instanceof格式
instanceof格式
instanceof格式
2016-12-12
格式:object instanceof class【前面是对象名,后面是类名】 返回:当object是class类的实例或是class子类的实例时,返回true;否则返回false example: Student类和Teacher类的父类是Person类。现有个Teacher类的实例变量t: 1、判断t instanceof Teacher,返回true【因为t是Teacher类的实例】 2、判断t instanceof Person,返回true【因为t是Person子类(即Teacher类)的实例】 3、判断t instanceof Student,返回false【因为t既不是Student类的实例,也不是Student子类的实例】
举报