just asking what can I put instead of super.draw() to call the parent class function within the overriding function?
class base {
void draw() {
}
}
class derived {
void draw() {
super.draw();
}
}
I know that for constructors the base constructor is automatically called at the derived constructor, I want basically the same thing for other methods. thanks