与实例相反

2022-09-02 14:22:51

是否有可能在java中获得与实例相反的实例?我尝试过这样的代码:

if( example !instanceof blarg)....

但它不会让我把!任何地方没有错误,请帮忙。


答案 1

你必须否定整个事情:

if(!(example instanceof blarg))

你也可以这样写:

if(example instanceof blarg == false)

答案 2

作为替代方案,请使用以下方法:isInstance

   if (!example.class.isInstance(blarg))
   {
     // your code here
   }