Скрытые поля через наследование

В следующем примере кода:

class Parent { 
    int x =5;
    public Integer aMethod(){

        System.out.print("Parent.aMthod ");
        return x;
    }
}

class Child extends Parent {
    int x =6;
    public Integer aMethod(){
        System.out.print("Child.aMthod "); 
        return x;
    }
}


class ZiggyTest2{

    public static void main(String[] args){

        Parent p = new Child();
        Child c = new Child();

        System.out.println(p.x + " " + c.x);

        System.out.println(p.aMethod() + "  \n");
        System.out.println(c.aMethod() + "  \n");
    }   
}

И вывод:

5 6
Child.aMthod 6  

Child.aMthod 6

Почемуp.aMethod() не печатать 6, когда p.x печатает 6?

Спасибо

редактировать

Ой, небольшая опечатка: вопрос должен быть "почему p.aMethod () не печатает 5, когда p.x печатает 5" - Спасибо @thinksteep

Ответы на вопрос(3)

Ваш ответ на вопрос