码迷,mamicode.com
首页 > 其他好文 > 详细

多态-成员变量访问

时间:2018-06-22 21:00:56      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:静态   动态绑定   类对象   oid   编译   访问   多态   string   父类   

成员变量
编译看左边(父类),运行看左边(父类)
成员方法
编译看左边(父类),运行看右边(子类)。动态绑定
静态方法
编译看左边(父类),运行看左边(父类)。
(静态和类相关,算不上重写,所以,访问还是左边的)
只有非静态的成员方法,编译看左边,运行看右边

class Demo2_Polymorphic {
    public static void main(String[] args) {
        /*Father f = new Son();                 //父类引用指向子类对象
        System.out.println(f.num);

        Son s = new Son();
        System.out.println(s.num);*/

        Father f = new Son();
        //f.print();
        f.method();                         //相当于是Father.method()
    }
}
/*
成员变量
编译看左边(父类),运行看左边(父类)
成员方法
编译看左边(父类),运行看右边(子类)。动态绑定
静态方法
编译看左边(父类),运行看左边(父类)。
(静态和类相关,算不上重写,所以,访问还是左边的)
只有非静态的成员方法,编译看左边,运行看右边 
*/
class Father {
    int num = 10;
    public void print() {
        System.out.println("father");
    }

    public static void method() {
        System.out.println("father static method");
    }
}

class Son extends Father {
    int num = 20;

    public void print() {
        System.out.println("son");
    }

    public static void method() {
        System.out.println("son static method");
    }
}

多态-成员变量访问

标签:静态   动态绑定   类对象   oid   编译   访问   多态   string   父类   

原文地址:http://blog.51cto.com/357712148/2131937

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!