欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

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

时间:2022-10-09 15:33:38|栏目:JAVA代码|点击:

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

复制代码 代码如下:

public interface IObject {
}

public class Foo implements IObject{
}

public class Test extends Foo{
}

public class MultiStateTest {
        public static void main(String args[]){
                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");
                if(f instanceof IObject)System.out.println("true");
        }
}

输出结果:

复制代码 代码如下:

true
true
true
true

 
另外,数组类型也可以使用instanceof来比较。比如
复制代码 代码如下:

String str[] = new String[2];

则str instanceof String[]将返回true。

上一篇:修改maven本地仓库路径的方法

栏    目:JAVA代码

下一篇:为什么wait和notify必须放在synchronized中使用

本文标题:Java关键字instanceof的两种用法实例

本文地址:http://www.codeinn.net/misctech/215911.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有