如何确定Object是否为Integer?类似的东西:
if (obj.isInteger()) {...}
答案 0 :(得分:37)
if (obj instanceof Integer) {....}
答案 1 :(得分:9)
if(ob instanceof Integer)
{ your code/logic here}
答案 2 :(得分:5)
您可以使用Class.isInstance()方法 - 此方法是Java 语言 dynamic
运算符的instanceof
等效项。