instanceof用于判断前面的对象是否后面的类,或者其子类、实现类的实例。如果是,则返回true,否则返回false。
instanceof运算符的前一个操作数通常是一个引用类型变量,后一个操作数通常是一个类(也可以是接口,可以把接口理解成一种特殊的类)。
在进行强制类型转换之前,先用instanceof运行符判断是否可以成功转换,从而避免出现ClassCastException异常,这样可以保证程序更加健壮。
在使用instanceof运算符需要注意:instanceof运算符前面操作数的编译时类型要么与后面的类相同,要么与后面的类具有父子继承关系,否则会引起编译错误。
1 public class InstanceofTest { 2 public static void main(String[] args) 3 { 4 //声明hello时使用Object类,则hello的编译类型是Object 5 //Object是所有类的父类,但hello变量的实际类型是String 6 Object hello = "Hello"; 7 //String与Object类存在继承关系,可以进行instanceof运算,返回true 8 System.out.println("字符串是否是Object类的实例:" + (hello instanceof Object)); 9 System.out.println("字符串是否是String类的实例" + (hello instanceof String)); 10 //Math与Object存在继承关系,可以进行instanceof运算,返回false 11 System.out.println("字符串是否是Math类的实例:" + (hello instanceof Math)); 12 //String类实现了Comparab接口,所以返回true 13 System.out.println("字符串是否是Comparable接口的实例:" + (hello instanceof Comparable)); 14 15 String a = "Hello"; 16 //String类与Math类有没有继承关系,所以下面代码编译无法通过 17 //System.out.println("字符串是否是Math类的实例:" + (a instanceof Math)); 18 } 19 }