Abstract classes cannot be
instantiated, but they can be
subclassed. In other words, a class that is declared with abstract keyword, is known as abstract class in java. It can have abstract(method without body) and non-abstract methods (method with body).Aug 24, 2009
read more >>