class A{
int i,j;
A(int x,int y){
i=x;j=y;
}
void show(){
System.out.println("i="+i+" j="+j);
}
}
class B extends A{
int k;
B(int i,int j,int k){
super(i,j);
this.k=k;
}
void show(){
System.out.println("k="+k);
}
}
public class overridingEx{
B ob=new B(1,2,3);
ob.show(); // this will call the B's show method.
}
请告诉我有没有办法从 B 的类对象 ob 调用 A 类方法?