+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.

Related questions

0 votes
asked Apr 30, 2021 in JAVA by rajeshsharma
+1 vote
asked Dec 7, 2020 in JAVA by SakshiSharma
...