What is the need of Abstract class?Abstract Class - is a class which cannot be instantiated & can include abstract or instance methods, constructors etc.
Instance methods can be used for implementing common functionality for all derived classes which inherits this abstract class.If my base class can solve the implementing of common functionality, then why do we need an abstract class for common functionality???Can anybody help me.