黑马程序员技术交流社区

标题: 关于多态 [打印本页]

作者: win_top1    时间: 2014-11-9 22:53
标题: 关于多态

  1. interface interfaceCase
  2. {
  3.      public void function();

  4. }


  5. public class InterfaceImpl implements interfaceCase
  6. {
  7.        
  8.         public void function()
  9.         {
  10.        
  11.            System.out.println("1111111111111");
  12.        
  13.         }

  14.        
  15.         public static void main(String[] args)
  16.         {
  17.                
  18.                 InterfaceImpl interfaceImpl=new InterfaceImpl();
  19.                
  20.           interfaceImpl.function();

  21.                 System.out.println(interfaceImpl.toString());
  22.         }
  23. }

复制代码
interfaceImpl为什么能调用Object类中的方法?

作者: 颜仔    时间: 2014-11-9 23:52
因为Object类是一切类的父类,所有类都可以使用其定义的方法。




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