abstract - in plain english 'Theorotical' which means that its in theory...
so when you say that you create an abstract class it is only the DEFINITION and not the usage...
the main idea (one of the ) behind creating abstract class / methods are to list down the structure of how your derived classes must be and what methods are to be overridden by them in order to perform the DERIVED objects specific needs...
Main Topics
Browse All Topics





by: asvforcePosted on 2007-10-02 at 22:39:02ID: 20004178
Abstraction, if a class which you create as abstract class, then this class is just like a blue print of the class structure without any details or process logic. And when you imply this class to any sub class then you will have to use the structure of this abstract class as blue print.