I read somewhere that in Java "constructors are not inherited."
On the other hand, I also read that if I do not explicitly call super , Java automatically calls the superclass constructor with no arguments (such a constructor must exist in this case).
Doesn't the superclass constructor (without arguments) automatically invoke the inheritance form?
Does the fact that "constructors are not inherited" exactly mean?
an00b source share