Despacho de Método Dinâmico em java

class A{
int a=10;   
public void show(){ 
    System.out.println("Show A: "+a);
    }
}

class B extends A{
public int b=20;    
public void show(){
    System.out.println("Show B: "+b);
    }
}



public class DynamicMethodDispatch {

    public static void main(String[] args) {

    A aObj = new A();       
    aObj.show();    //output - 10

    B bObj = new B();
    bObj.show();   //output - 20

    aObj = bObj;   //assigning the B obj to A..         
    aObj.show();  //output - 20 

    aObj = new B();
    aObj.show();  //output - 20
             System.out.println(bObj.b);  //output - 20 
    //System.out.println(aObj.b); //It is giving error



     }
}

No programa acima estou recebendo erro wen eu tento invocaraObj.b.
1.porque eu não sou capaz de acessar essa variável através do aObj embora seja referente à classe B ??
2. porque eu posso acessar o método show ()?

questionAnswers(5)

yourAnswerToTheQuestion