could somebody explain this to me?
quote: "a super class constructor is always invoked when yu create a subclass object. if you don't explicitly call a
superclass constructor, then the no-arg constructor of the
superclass is called for you. If the superclass doesn't have a
no-arg constructor(..), then you will get a compilation error
along the lines of "no constructor found in superclass." "
From my understanding, Object class is the ultimate superclass
of all classes, so you can always find the no-arg constructor
in the superclass(indirectly), right? then where is this error coming from?
Thanks in advance,
christie