| Author |
abstract class
|
suman deb
Ranch Hand
Joined: Jul 14, 2005
Posts: 54
|
|
hi all, why should we use an abstract class or what is advantage of using an abstract class over a normal class?
|
 |
shan sundaram
Greenhorn
Joined: Feb 07, 2004
Posts: 15
|
|
|
A class that is missing definitions for one or more methods. You can't thus create an object of that class. You must first create a subclass and provide definitions for the abstract methods. Unlike interfaces, abstract classes may implement some of the methods. Though you can't instantiate an abstract class, you can invoke its static methods.
|
 |
 |
|
|
subject: abstract class
|
|
|