17.instanceof 和 类型转换
作者:互联网
1.instanceof
通过instanceof测试是不是父子关系
总结公式:System.out.println(x instanceof y)
编译通过与否,取决于x和y是不是父子关系
true还是false 取决于x指向的对象和y的关系是不是父子关系(或者是本身)
例如:Object object = new Student(); (Teacher和Student都继承了Person)
System.out.println(object instanceof Teacher) //结果为false 因为object 指向对象是Student,但是Student和Teacher不是父子关系,而编译通过的原因是Object是“祖宗类”
System.out.println(object instanceof Person) //结果为true 因为object 指向对象是Student,但是Student和Person是父子关系,而编译通过的原因是Object是“祖宗类”
2.类型转换
父类没有办法调用子类独有的方法,只能通过强制类型转换成子类,才能调用
下面子类Student有个student的方法:
无法调用
强制转换后可以调用
自动转换:子类转父类,但是会丢失子类自己的方法
标签:instanceof,类型转换,17,子类,object,System,父子关系,Student 来源: https://www.cnblogs.com/lyq888/p/16068976.html