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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

* 静态方法
        * 编译看左边(父类),运行看左边(父类)。
        * (静态和类相关,算不上重写,所以,访问还是左边的)
        * 只有非静态的成员方法,编译看左边,运行看右边
案例:
  • class Demo2_Polymorphic {
  •         public static void main(String[] args) {
  •                 Father f = new Son();               
  •                 f.method();                                                        //相当于是Father.method()
  •         }
  • }
  • class Father {
  •         int num = 10;
  •         public static void method() {
  •                 System.out.println("father static method");
  •         }
  • }
  • class Son extends Father {
  •         int num = 20;
  •         public static void method() {
  •                 System.out.println("son static method");
  •         }
  • }



0 个回复

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