
can constructors of the parent class be inherited by the child class?

Hi Friend,
A constructor cannot be inherited. That is, you cannot create a instance of a subclass using a constructor of one of it's superclasses. One of the main reasons is because you probably don't want to overide the superclasses constructor, which would be possible if they were inherited.
Thanks