+1 vote
in C Plus Plus by
What is abstract class in JAVA?

1 Answer

0 votes
by

A class that is declared using the “abstract” keyword is known as abstract class. It can have abstract methods(methods without body) as well as concrete methods (regular methods with body). A normal class(non-abstract class) cannot have abstract methods.

...