java – 如何找出对象是整数还是isa字符串或isa布尔值?

前端之家收集整理的这篇文章主要介绍了java – 如何找出对象是整数还是isa字符串或isa布尔值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个对象,我想检测什么类型,所以我可以打电话
if (obj isa Integer)
  put(key,integerval);  
if (obj isa String)
    put(key,stringval);  
if (obj isa Boolean)
    put(key,booleanval);

解决方法

你真的很亲密!
if (obj instanceof Integer)
    put(key,integerval);  
if (obj instanceof String)
    put(key,stringval);  
if (obj instanceof Boolean)
    put(key,booleanval);

JLS 15.20.2

RelationalExpression instanceof ReferenceType

At run time,the result of the instanceof operator is true if the value of the RelationalExpression is not null and the reference could be cast (§15.16) to the ReferenceType without raising a ClassCastException. Otherwise the result is false.

看看你的使用模式,但是,看起来你可能会遇到比这更大的问题.

原文链接:https://www.f2er.com/java/125870.html

猜你在找的Java相关文章