是否有可能在java中获得与instanceof相反的内容?我尝试过这样的代码:
if( example !instanceof blarg)....
但它不会让我把!任何地方都没有错误,请帮助。
答案 0 :(得分:55)
你必须否定整个事情:
if(!(example instanceof blarg))
答案 1 :(得分:1)
作为替代方案,请使用isInstance
方法:
if (!example.class.isInstance(blarg))
{
// your code here
}