vote up 0 vote down star

I have the following classes:

class foo {
    public void a() {
        print("a");
    }
    public void b() {
        a();
    }
}

class bar extends foo {
    public void a() {
        print("overwritten a");
    }
}

When I now call bar.b() I want it call the overwritten method a() in foo. It does, however, print "a".

flag
Pardon the didactic: It's called "overriding", not "overwriting". – sylvarking Apr 10 at 5:53

5 Answers

vote up 1 vote down

Are your two classes in different packages? And is your foo class methods declared public, protected, or private or package local? Obviously if they are private, this won't work. Perhaps less obvious, is if they are package local (i.e. no public/protected/private scope) then you can only override them if you are in the same package as the original class.

For example:

package original;
public class Foo {
  void a() { System.out.println("A"); }
  public void b() { a(); }
}

package another;
public class Bar extends original.Foo {
  void a() { System.out.println("Overwritten A"); }
}

package another;
public class Program {
  public static void main(String[] args) {
    Bar bar = new Bar();
    bar.b();
  }
}

In this case, you will still get 'A'. If you declare the original a() method in Foo public or protected, you will get the result you expected.

link|flag
vote up 0 vote down

You may be confused if you are coming from C# or some other language where you have to explicitly declare virtual functions and/or overriding functions.

In Java, all instance functions are virtual, and can be overridden -- unless they are declared as private and/or final.

It is not necessary to specify the new @Override annotation to do so, adding the annotation just specifies that your intent is to override, and will cause a either a warning or error if it isn't an override. (If you accidentally misspelled the method name for example).

Andrew's example shows how this should work.

link|flag
vote up 4 vote down

It may be that you are trying to use static methods, which won't work as they don't get overridden.

A good way of checking is to add the @Override annotation to bar.a() and see if the compiler gives you an error that a() isn't actually overidding anything

link|flag
+1 for the @Override recommendation – Rob Apr 10 at 4:46
vote up 1 vote down

Are the methods defined as static? That's the only way I could see getting that result. I found a good explanation about that here: http://faq.javaranch.com/view?OverridingVsHiding

link|flag
vote up 3 vote down

When I run the following:

public class Program {
    public static void main(String[] args) {
    	bar b = new bar();
    	b.b();
    }
}

class foo {
    public void a() {
       System.out.printf("a");
    }
    public void b() {
        a();
    }
}

class bar extends foo {
    public void a() {
        System.out.printf("overwritten a");
    }
}

I get the following output:

overwritten a

which is what I would expect to see.

link|flag
You beat me by one minute. I get the same output. – Eddie Apr 10 at 3:04
May be he beat you in posting, otherwise, I believe, we got this output way before this question is posted. – Vinegar Apr 10 at 3:41

Your Answer

Get an OpenID
or

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