java中怎么判断变量是不是int类?
我来答
可选中1个或多个下面的关键词,搜索相关资料。也可直接点“搜索资料”搜索整个问题。
- java
- 变量
- int
- typeof
- 搜索资料
酷涵KH
推荐于2019-09-01
·
TA获得超过2658个赞
关注
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");
}
收起
为你推荐: