How can you invoke a defined method of an abstract class?
An abstract class cannot be instantiated directly. An abstract class has to be sub-classed first and then instantiated. Only then the method defined in the abstract class can be invoked.
FAQ Category: Abstract and Interface
