Programming Tutorials

Comment on Tutorial - Abstract classes in Java By Kamini



Comment Added by : siva

Comment Added at : 2012-08-30 06:03:50

Comment on Tutorial : Abstract classes in Java By Kamini
we can create reference variable for an abstract class but we cant call a method in the subclass , which is not available in the abstract class. wit h the reference variable we can call only those methods which are available in the superclass(here abstract class)

View Tutorial