InterviewSolution
Saved Bookmarks
| 1. |
What Is The Purpose Of Abstract Class? |
|
Answer» It is not an instantiable CLASS. It provides the concrete implementation for some/all the METHODS. So that they can reuse the concrete functionality by INHERITING the abstract class. It is not an instantiable class. It provides the concrete implementation for some/all the methods. So that they can reuse the concrete functionality by inheriting the abstract class. |
|