+1 vote
in JAVA by
Why we can’t create the object of abstract class in java?

1 Answer

0 votes
by

Why we can’t create the object of abstract class in java?

Because an abstract class is an incomplete class (incomplete in the sense it contains abstract methods without body and output) we cannot create an instance or object; the same way we say for an interface.

...