ContactUs :

Please send your Questions & Answers or Feedback to "mohan@javabook.org"

What is an abstract class?


Abstract classes are classes that contain one or more abstract methods. An abstract method is a method that is declared, but contains no implementation.
Note:
If even a single method is abstract, the whole class must be declared abstract.
Abstract classes may not be instantiated, and require subclasses to provide implementations for the abstract methods.
You can’t mark a class as both abstract and final.
Related Posts Plugin for WordPress, Blogger...
Flag Counter