How can you invoke a defined method of an abstract class?
April 14th, 2008An 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.


