Java / Abstract Class
What is an abstract method in Java?
An abstract method is a method without a body. You just declare method, without defining it and use abstract
keyword in method declaration. All method declared inside Java Interface are by default abstract. Here is an example of an abstract method in Java.
public void abstract anExampleAbstractMethod();
More Related questions...