Link to home
Start Free TrialLog in
Avatar of ravisiva
ravisiva

asked on

Abstract class

Dear all

  Abstract class can have  no constructor .
What is the reason behind  in that?

ASKER CERTIFIED SOLUTION
Avatar of Lee_Nover
Lee_Nover

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of FeralCTO
FeralCTO

An abstract class never gets instantiated. Therefor, no Constructor. Abstract classes are very useful as conceptual abstractions of responsibility, and serve as super classes to other concrete classes that do get instantiated.