Intro

My real question is about the use of the annotation. Trying to find an answer myself, I ran into several other questions. This is why there are also related questions below. I hope this is not too confusing.

Question

Should a method that implements an interface method be annotated with @Override? Eclipse for instance automatically inserts an @Override annotation after using the Quick Fix option 'Add unimplemented methods'. Is this correct behavior?

The javadoc of the Override annotation says:

Indicates that a method declaration is intended to override a method declaration in a superclass. If a method is annotated with this annotation type but does not override a superclass method, compilers are required to generate an error message.

I don't think that an interface is technically a superclass. Or is it? Compilers don't generate an error at least when the annotation is used in this case.

Eclipse can give warnings if you omit this annotation for overriding ''real'' superclass methods. It doesn't if you omit it for interface methods. Another question revealed that this is a glitch in Eclipse.

The reason this worries me a little bit, is that I try to be consistent. But if the IDE doesn't give warnings when the annotation is not there and automatically generates them on the other hand, consistency is rather difficult.

Edit: Two articles with relevant info: @Override and @Override Snafu

link|improve this question

78% accept rate
wow this question could be shorter, but it's the question I needed. Thanks – Yar Feb 25 '10 at 2:39
feedback

9 Answers

up vote 40 down vote accepted

You should use @Override whenever possible. It prevents simple mistakes from being made. Example:

@Override
public boolean equals(MyObject mObj){
    // code ...
}

This doesn't compile because it doesn't properly override equals.

The same will go for methods that implement an interface (1.6 and above only) or override a Super class's method.

link|improve this answer
41  
Note that you cannot add the @Override annotation to a method implementing an interface in Java 5 - it generates an error. It is allowed in Java 6. – Bill Michell Oct 22 '08 at 9:39
2  
How can people vote up an incorrect answer? You are NOT allowed to @Override an interface method... this generates a compiler error. – Matthias Jan 15 '10 at 17:08
4  
Um, no, it doesn't. In fact, Eclipse auto-inserts @Override when filling in methods that implement an interface. – jjnguy Jan 15 '10 at 17:26
-1 until the answer includes a mention about the different behaviour from Java 1.5 to 1.6 with regards to implementing an interface method. Just because I've seen it be a confusing aspect for people and it really merits a mention. – Grundlefleck Jan 15 '10 at 17:32
4  
+1 for someone finally beating Jon Skeet – BlueRaja - Danny Pflughoeft Jan 15 '10 at 17:42
show 4 more comments
feedback

I believe that javac behaviour has changed - with 1.5 it prohibited the annotation, with 1.6 it doesn't. The annotation provides an extra compile-time check, so if you're using 1.6 I'd go for it.

link|improve this answer
What is the extra check? – Michael Carman Feb 16 at 16:38
@Michael You can notice if any interface has deleted. – Sangdol Feb 27 at 0:26
feedback

I would use it at every opportunity. See When do you use Java's @Override annotation and why?

link|improve this answer
feedback

For me, often times this is the only reason some code requires Java 6 to compile. Not sure if it's worth it.

link|improve this answer
3  
It's worth it... – Thilo Dec 18 '09 at 11:04
feedback

JDK 5.0 not allows you to use @Override annotation if you are implementing method declared in interface (its compilation error), but JDK 6.0 allows same. So may be you can configure your project preference according to your requirement.

link|improve this answer
feedback

Overriding your own methods inherited from your own classes will typically not break on refactorings using an ide. But if you override a method inherited from a library it is recommended to use it. If you dont, you will often get no error on a later library change, but a well hidden bug.

link|improve this answer
feedback

i found out, it's not problem with sdk 5 or 6. for ecipse Helios, either 5 or 6, allow the @override for implemented interface methods. as for Galileo, either 5 or 6, @override annotation is not allowed.

link|improve this answer
feedback

You should always annotate methods with @Override if it's available.

In JDK 5 this means overriding methods of superclasses, in JDK 6, and 7 it means overriding methods of superclasses, and implementing methods of interfaces. The reason, as mentioned previously, is it allows the compilor to catch errors where you think you are overriding (or implementing) a method, but are actually defining a new method (different signature).

The equals(Object) vs. equals(YourObject) example is a standard case in point, but the same argument can be made for interface implementations.

I'd imagine the reason it's not mandatory to annotate implementing methods of interfaces is that JDK 5 flagged this as a compile error. If JDK 6 made this annotation mandatory, it would break backwards compatibility.

I am not an Eclipse user, but in other IDEs (IntelliJ), the @Override annotation is only added when implementing interface methods if the project is set as a JDK 6+ project. I would imagine that Eclipse is similar.

However, I would have prefer to see a different annotation for this usage, maybe an @Implements annotation.

link|improve this answer
feedback

Eclipse itself will add the @Override annotation when you tell it to "generate unimplemented methods" during creation of a class that implements an interface.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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