Java中instanceof关键字的用法总结
java 中的instanceof 运算符是用来在运行时指出对象是否是特定类的一个实例。instanceof通过返回一个布尔值来指出,这个对象是否是这个特定类或者是它的子类的一个实例。
用法:
result = object instanceof class
参数:
result:布尔类型。
object:必选项。任意对象表达式。
class:必选项。任意已定义的对象类。
说明:
如果 object 是 class 的一个实例,则 instanceof 运算符返回 true。如果 object 不是指定类的一个实例,或者 object 是 null,则返回 false。
例子如下:
package com.instanceoftest;
interface a{}
class b implements a{
}
class c extends b {
}
class instanceoftest {
public static void main(string[] args){
a a=null;
b b=null;
boolean res;
system.out.println("instanceoftest test case 1: ------------------");
res = a instanceof a;
system.out.println("a instanceof a: " + res);
res = b instanceof b;
system.out.println("b instanceof b: " + res);
system.out.println("\ninstanceoftest test case 2: ------------------");
a=new b();
b=new b();
res = a instanceof a;
system.out.println("a instanceof a: " + res);
res = a instanceof b;
system.out.println("a instanceof b: " + res);
res = b instanceof a;
system.out.println("b instanceof a: " + res);
res = b instanceof b;
system.out.println("b instanceof b: " + res);
system.out.println("\ninstanceoftest test case 3: ------------------");
b b2=(c)new c();
res = b2 instanceof a;
system.out.println("b2 instanceof a: " + res);
res = b2 instanceof b;
system.out.println("b2 instanceof b: " + res);
res = b2 instanceof c;
system.out.println("b2 instanceof c: " + res);
}
}
/*
result:
instanceoftest test case 1: ------------------
a instanceof a: false
b instanceof b: false
instanceoftest test case 2: ------------------
a instanceof a: true
a instanceof b: true
b instanceof a: true
b instanceof b: true
instanceoftest test case 3: ------------------
b2 instanceof a: true
b2 instanceof b: true
b2 instanceof c: true
instanceof是java的一个二元操作符,和==,>,<是同一类东东。由于它是由字母组成的,所以也是java的保留关键字。它的作用是测试它左边的对象是否是它右边的类的实例,返回boolean类型的数据。
用法: 某个实例对象 instanceof 某个类名
instanceof 通常用于根据不同的实例调用不同的方法:
一、在有继承关系的类中我们可以通过多态来调用不同实例中的不同方法:
例1:
有三个类,类名以及它们之间的关系如下
animal (superclass) dog(subclass) cat(subclass)
则可得出如下对象
animal animal =new animal (); ====》animal instanceof animal 返回 true
dog dog=new dog();====》dog instanceof dog 返回 true
cat cat=new cat();====》cat instanceof cat 返回 true
animal dog=new dog();====》dog instanceof animal 返回 true
animal cat=new cat();====》cat instanceof animal 返回 true
animal dog=new dog();
animal cat=new cat();
list list = new arraylist();
list.add(dog);
list.add(cat);
iterator it = list.iterator();
while (it.hasnext()) {
it.next().animaldo();
}
在这里我们可以在dog与cat类中重写animal中的animaldo方法,通过调用animaldo方法,然后会自动根据不同的实例调用不同类中的方法.
二、在没有继承关系的类中,我们可以通过instanceof来判断当前实例,然后很据不同实例调用不同方法:
例2:
station s = new station();
cell c = new cell();
list list = new arraylist();
list.add(s);
list.add(c);
iterator it = list.iterator();
while (it.hasnext()) {
object obj = it.next();
if (obj instanceof station ) {
station s1 = (station ) obj;
s1.stationdo();
}
if (obj instanceof cell ) {
cell c1 = (cell ) obj;
c1.celldo();
}
}
在这里我们可以通过instanceof 判断结果,执行不同类中的相应动作方法(stationdo()、celldo())。
一般在使用无泛型的集合(list、set等)时,比较多的使用 instanceof ,由于集合能够存各种对象,所以在读取时一般要进行相应的判断。