许多语言都有检查Object是否属于某种类型(包括父类)的工具,用'is'实现并使用如下:
if(obj is MyType)
或者稍微繁琐一点,您可以在其他语言中使用'as'关键字进行检查,以进行软类型转换并查看结果是否为null.
我已经多年没有使用过Java而且我正在快速恢复它,但是Java确实可以轻松地做到这一点而无需深入研究Reflection API?
提前感谢您的回答.我在这里和其他地方搜索过,但所涉及的关键词非常通用,即使我确定这有一个简单的答案,谷歌搜索它很难.
if (objectReference instanceof type){ //Your code goes here }
更多信息在这里.
您只能使用instanceof
类文字:即:
Class type = String.class; if (myObj instanceof String) // will compile if (myObj instanceof type) //will not compile
另一种方法是使用该方法 Class.isInstance
if (type.isInstance(myObj)) // will compile