0
How to execute an abstract method in an abstract class?
Without creating an instance, how can I execute methods. even I inherit that abstract class and tried to execute that method from derived class. so tell me how to execute..?
2 Answers
+ 2
The abstract method must be implemented in a derived class and an instance of that class must be created to use this method.
0
can you please give some example?