typerof 是js里的方法
判断的方法有很多 比如异常判断
楼上的代码是有问题的。思路没错。但是编译就会报错
int是基本类型,不能用instanceof判断,java没有typeof判断。
你要判断类型,请用Integer去申明一个对像比较简单
java里没有typerof ,要用instanceof
基础类型不行,要用对象
Integer i = 0;
if (i instanceof Integer) {
System.out.println("haha");
}
String str = "abc";
if (str instanceof Object) {
System.out.println("haha");
}
希望能给你帮助。
java里没有typerof ,要用instanceof
基础类型不行,要用对象
Integer i = 0;
if (i instanceof Integer) {
System.out.println("haha");
}
String str = "abc";
if (str instanceof Object) {
System.out.println("haha");
}