Could someone please help me clarify the following matter?
An abstract class is a class which has to be inherited. An instance of an abstract class can never be created, but references of abstract classes can be declared.
Considering this, can an abstract class contain a constructor and can the declaration of a reference of an abstract class be seen as an instantation of an object/object reference of an abstract class?
An abstract class is a class which has to be inherited. An instance of an abstract class can never be created, but references of abstract classes can be declared.
Considering this, can an abstract class contain a constructor and can the declaration of a reference of an abstract class be seen as an instantation of an object/object reference of an abstract class?