Java关键字instanceof的两种用法实例

网友投稿 248 2023-08-04


Java关键字instanceof的两种用法实例

instanceof关键字用于判断一个引用类型变量所指向的对象是否是一个类(或接http://口、抽象类、父类)的实例。

 

举个例子:

复制代码 代码如下:

public interface IObject {

}

public class Foo implements IObject{

}

public class Test extends Foo{

}

public class MultiStateTest {

        public static void main(String args[]){

         &nbsphttp://;      test();

        }

        public static void test(){

                IObject f=new Test();

                if(f instanceof java.lang.Object)System.out.println("true");

                if(f instanceof Foo)System.out.println("true");

                if(f instanceof Test)System.out.println("true");

     &nbshttp://p;          if(f instanceof IObject)System.out.println("true");

        }

}

输出结果:

复制代码 代码如下:

true

true

true

true

另外,数组类型也可以使用instanceof来比较。比如

复制代码 代码如下:

String str[] = new String[2];

则str instanceof String[]将返回true。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:鼠标事件的screenY,pageY,clientY,layerY,offsetY属性详解
下一篇:Java中Set与List的关系与区别介绍
相关文章

 发表评论

暂时没有评论,来抢沙发吧~