because the implementation for every instance of the abstract class would be different thats the whole idea of abstract classes
sona<br />SCJP
Jyotsna Clarkin
Ranch Hand
Joined: Jan 26, 2001
Posts: 158
posted
0
Abstract methods are designed as a template for subclasses methods. These methods must be implemented by the subclasses. Abstract methods support dynamic binding. Thus the correct implementation will be invoked at run-time. Static methods are class-specific. Thus a static method is one whose implementation is the SAME for all objects of a particular class. You cannot provide implementation for methods of a different class even if it happens to be a subclass Static methods are bound at compile time based on the type of the reference, not at run time based on the class of the object. So static methods will NOT show polymorphic behaviour.