Hi, guys. i'm a newbie in java world,now i confront a question about the inherite classes.
class Base {
void f() {....}
}
class Derive1 extends Base {
void f() {....}
}
class Derive2 extends Derive1 {
void f() {....}
}
i know that if i want to call the f() belongs to Derive1 in the f() belongs to Derive2, i can just write super.f().
Then that's the question, i want to call the f() belongs to Base in the f() function of Derive2, now , what should i do?
TIA
:eek:
smallrain