An abstract method is a method that is declared in a class, but not defined. In order to be instantiated, a subclass must provide the definition. An abstract class is any class that includes an abstract method. It is similar to Pure virtual in C++.
If a class includes an abstract method, the class must be declared abstract, too.
0 Comments
Please add nice comments or answer ....