面向对象(多态中的成员访问特点之成员方法)
* 成员方法
* 编译看左边(父类),运行看右边(子类)。
案例:
- class Demo2_Polymorphic {
- public static void main(String[] args) {
- Father f = new Son();
- f.print(); //相当于是Father.method()
- }
- }
- class Father {
- int num = 10;
- public void print() {
- System.out.println("father");
- }
- }
- class Son extends Father {
- int num = 20;
- public void print() {
- System.out.println("son");
- }
- }
|
|