‎2006 Dec 06 10:05 AM
How to call the method of a sub class which is redefined in the subclass.
1. The super class also has the implementation.
2.No separate instance method is created for the sub class(which creates
instance) .
3.There is a method s_instance of the super class which is static.
4.Therefore the s_instance cannot be redefined.
‎2006 Dec 06 10:19 PM
‎2006 Dec 06 10:31 PM
Hi,
static methods are called using classname=>method_name. There are no instances for static methods. so CALL METHOD super_class=>s_instance...
I do not understand how a method can have the name s_instance ?!
Regards,
Clemens