213k views
5 votes
True of False - use T or F An abstract class can have instances created using the constructor of the class.

User Tejinderss
by
5.1k points

1 Answer

3 votes

Answer:

False

Step-by-step explanation:

An instance of an abstract class cannot be created through the constructor of the class, because it does not have a complete implementation. Though, it is possible to have references of an abstract type class. Abstract classes are incomplete structures and you would have to build onto it before you are able to use it.

User Martin Winter
by
5.8k points