黑马程序员技术交流社区
标题:
instanceof判断:子类的对象属于父类的对象
[打印本页]
作者:
ganjx
时间:
2015-9-18 01:33
标题:
instanceof判断:子类的对象属于父类的对象
class TestMore
{
public static void main(String [] args)
{
Child c =new Child();
System.out.println(c instanceof Father);[color=Red]//返回true,子类的对象属于父类的对象[/color]
System.out.println(c instanceof Child);//返回true
Father f =new Child();
System.out.println(f instanceof Father);//返回true
System.out.println(f instanceof Child);//返回true
Father ff =new Father();
System.out.println(ff instanceof Father);
System.out.println(ff instanceof Child); [color=Red]//false,父类的对象不属于子类的对象[/color]
}
}
class Father
{
}
class Child extends Father
{
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2