I want to understand how hiding works in Java. So lets assume you have following code
public class A{
protected SomeClass member;
public A(SomeClass member){
this.member = member;
}
}
public class B extends A{
protected SomeClass member;
public B(SomeClass member){
super(member);
}
public static void main(String[] args){
SomeClass sc = new SomeClass();
B b = new B(sc);
System.out.println(b.member.toString());
}
}
If I compile I get honored with a NullPointerException. I thought it would be the output of sc.toString();
I change this code to
public class A{
protected SomeClass member;
public A(SomeClass member){
setMember(member);
}
public void setMember(SomeClass sc){
this.member = sc;
}
}
public class B extends A{
protected SomeClass member;
public B(SomeClass member){
super(member);
}
public void setMember(SomeClass sc){
this.member = sc;
}
//...main
}
and it get the output as expected... ok setMember of B Overrides the one from A so I can explain this in this way. I played around a little bit and removed setMember from B to get Back my NullPointerException. But it compiles again and gives me output if I change A's Code to
public class A{
protected SomeClass member;
public A(SomeClass member){
setMember(member);
}
public void setMember(SomeClass sc){
member = sc;
}
}
it seems to me that there are in fact two instances of SomeClass member... but what means shadowing if there are two instances? Is hiding only usefull for the second case?
bdoesn't have a membersc. It fails atSystem.out.println(b.sc.toString());. If your compiler accepts this, it's broken. – Jim Garrison Jun 24 '11 at 21:05