📜  java 检查类类型 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:52.434000             🧑  作者: Mango

代码示例2
// obj instanceof Class

/*example*/

String str = "a String made by the String class";

if(str instanceof String) System.out.println("This is True");
if(str instanceof float) System.out.println("This will never be on your screen");