我有一个对象,我想检测什么类型,所以我可以打电话
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);
RelationalExpression
instanceof
ReferenceTypeAt run time,the result of the
instanceof
operator istrue
if the value of the RelationalExpression is notnull
and the reference could be cast (§15.16) to the ReferenceType without raising aClassCastException
. Otherwise the result isfalse
.
看看你的使用模式,但是,看起来你可能会遇到比这更大的问题.