InterviewSolution
Saved Bookmarks
| 1. |
What Is Abstract ? |
|
Answer» A JAVA keyword used in a class definition to specify that a class is not to be INSTANTIATED, but rather INHERITED by other CLASSES. An abstract class can have abstract methods that are not implemented in the abstract class, but in subclasses. A Java keyword used in a class definition to specify that a class is not to be instantiated, but rather inherited by other classes. An abstract class can have abstract methods that are not implemented in the abstract class, but in subclasses. |
|