黑马程序员技术交流社区

标题: instanceof判断:子类的对象属于父类的对象 [打印本页]

作者: ganjx    时间: 2015-9-18 01:33
标题: instanceof判断:子类的对象属于父类的对象
  1. class TestMore
  2. {
  3.         public  static void main(String [] args)
  4.         {
  5.                 Child c =new Child();
  6.                 System.out.println(c instanceof Father);[color=Red]//返回true,子类的对象属于父类的对象[/color]
  7.                 System.out.println(c instanceof Child);//返回true
  8.                 Father f =new Child();
  9.                 System.out.println(f instanceof Father);//返回true
  10.                 System.out.println(f instanceof Child);//返回true
  11.                 Father ff =new Father();
  12.                 System.out.println(ff instanceof Father);
  13.                 System.out.println(ff instanceof Child); [color=Red]//false,父类的对象不属于子类的对象[/color]
  14.                
  15.         }
  16. }

  17. class Father
  18. {

  19. }
  20. class Child extends Father
  21. {

  22. }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2