vote up 1 vote down star

Hello everybody, I have two Java classes : B, which extends another class A, as follows :

class A
{
    public void myMethod()
    { /* ... */ }
}

class B extends A
{
    public void myMethod()
    { /* Another code */ }
}

I would like to call the A.myMethod() from the B.myMethod(). I am coming from the C++ world, and I don't know how to do this basic thing in Java :( If someone can help :) Thanks.

flag

6 Answers

vote up 4 vote down check

The keyword you're looking for is super. See this guide, for instance.

link|flag
vote up 9 vote down

Just call it using super.

    public void myMethod()
    {
        // B stuff
        super.myMethod();
        // B stuff
    }
link|flag
vote up 2 vote down

super.MyMethod()

link|flag
vote up 1 vote down

call super.myMethod();

link|flag
vote up 1 vote down

Use the super keyword.

link|flag
vote up 0 vote down

Woooow ! What a fast answer ! Thank you very much.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.