Possible Duplicate:
When do you use Java's @Override annotation and why?

My question is very basic why we people use @Override annotation and what is the importance of this annotation?

In Old JDK why it not show as warning, but in latest JDK it required then Why..?

link|improve this question

57% accept rate
Here is discussion on the same topic [When do you use Java's @Override annotation and why?][1] ,seems helpful. [1]: stackoverflow.com/questions/94361/… – Sanjay Nov 10 '11 at 7:14
feedback

closed as exact duplicate by pst, Jigar Joshi, Matthew Farwell, tanascius, Gamecat Nov 10 '11 at 8:57

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 8 down vote accepted

Suppose you have:

public class Foo
{
    public void bar(String x, String y) {}
}

public class Foo2 extends Foo
{
    public void bar(String x, Object y) {}
}

You really meant Foo2.bar to override Foo.bar, but due to a mistake in the signature, it doesn't. If you use @Override you can get the compiler to detect the fault. It also indicates to any reading the code that this is overriding an existing method or implementing an interface - advising them about current behaviour and the possible impact of renaming the method.

Additionally, your compiler may give you a warning if a method overrides a method without specifying @Override, which means you can detect if someone has added a method with the same signature to a superclass without you being aware of it - you may not want to be overriding the new method, as your existing method may have different semantics. While @Override doesn't provide a way of "un-overriding" the method, it at least highlights the potential problem.

link|improve this answer
feedback

Just to make sure at compile time that we are really overriding the method, also adds good amount to the readability of code

@Override is there since JDK 1.5, so you might get warning in prior

link|improve this answer
feedback

Using this annotation you may be sure that you are really overriding base method, not creating new one (e.g., by accidentally using wrong arguments). If you use @Override annotation, you will get compile time error if something is not right.

link|improve this answer
feedback

To verify during compile time that you are actually overriding a method. IDE's can tell you immediately when you provide that annotation.

link|improve this answer
feedback

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