A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  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. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马