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

1 Answer

0 votes
by (19.8k points)

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.

Related questions

0 votes
+2 votes
asked Jun 19, 2019 in C Plus Plus by anonymous
+1 vote
asked May 14, 2019 in C Plus Plus by anonymous
...