RE: can we call constructor of superclass directly wit...
No
But according to me if we dont write the super() in Sub Class then also by default it is used in the first line of the subclass constructors.
If the super() is not written in the subclasses then no constructors of super classes is loaded in memory and then we cannot create an instance of the subclasses.
RE: can we call constructor of superclass directly wit...
yes we can call by simpy Intilizing the Object of the sub class. Intrernally the default contrutor will call the super class . if there is no construtor declerd with parameter.
if any contrutor declared with parameter the we need to call super class construtor explicetly ,bypassing paremater . It should be the first line of the sub class construtor