what is an abstract class please expand by


What is an abstract class? Please, expand by examples of using both. Explain why?  

Abstract classes are closely related to interfaces. They are classes that cannot be instantiated, and are frequently either partially implemented, or not at all implemented. One key difference between abstract classes and interfaces is that a class may implement an unlimited number of interfaces, but may inherit from only one abstract  (or any other kind of) class. A class that is derived from an abstract class may still implement interfaces. Abstract classes are useful when creating components because they allow you specify an invariant level of functionality in some methods, but leave the implementation of other methods until a specific implementation of that class is needed. They also version well, because if additional functionality is needed in derived classes, it can be added to the base class without breaking code.

 

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: what is an abstract class please expand by
Reference No:- TGS0310536

Expected delivery within 24 Hours