对象

class Father {
    int age = 50;
    static int score = 75;

    public void show() {
        System.out.println("这是老爸的show");
    }
}

class Son extends Father {
    int age = 25;
    static int score = 100;

    public void show() {
        System.out.println("这是儿子的show");
    }
}

class Demo1 {
    public static void main(String[] args) {
        Father f = new Son();
        System.out.println(f.age);
        f.show();

    }

    public void age() {
        System.out.println(f.age);
    }
}

最后几行代码报错,我在main方法里开辟一个方法去找对象,报错,什么原因?
那是因为它和对象本来就没有关系。

你可能感兴趣的:(对象)