If there is a private constructor, does the JVM insert a call to the super constructor?
I'm referring to the super() call in that private constructor.
class Alpha {
static String s="";
protected Alpha(){
s+="alpha";
}
}
class SubAlpha extends Alpha{
private SubAlpha(){
s+="sub";
}
}
class SubSubAlpha extends Alpha{
private SubSubAlpha(){
s+="subsubAlpha";
}
public static void main(String[] args){
new SubSubAlpha();
System.out.print(s);
}
}
Here I don't get any compilation error. Here in the SubSubAlpha class there is private constructor. Is that compiler insert super() call in that if so, what happens in the SubAlpha class. Even there is private constructor. And if that is not accessed how the inheritance tree continues till the top.
super()orthis(), then they will fail to compile.class Base { private Base() { } } class Derived extends Base { }) – Tom Hawtin - tackline Mar 19 '11 at 7:57class SubSubAlpha extends SubAlpha? – user unknown Mar 19 '11 at 9:09