When do you use Java's @Override annotation and why? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:46:30Z http://stackoverflow.com/feeds/question/94361 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why 36 When do you use Java's @Override annotation and why? Alex B 2008-09-18T16:48:26Z 2009-12-03T21:43:35Z <p>What are the best practices for using Java's @Override annotation and why? </p> <p>It seems like it would be overkill to mark every single overridden method with the @Override annotation. Are there certain programming situations that call for using the @Override and others that should never use the @Override? </p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94375#94375 1 Answer by Hank Gay for When do you use Java's @Override annotation and why? Hank Gay 2008-09-18T16:49:48Z 2008-09-18T16:49:48Z <p>I use it every time. It's more information that I can use to quickly figure out what is going on when I revisit the code in a year and I've forgotten what I was thinking the first time.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94379#94379 -2 Answer by Burkhard for When do you use Java's @Override annotation and why? Burkhard 2008-09-18T16:50:07Z 2008-09-18T16:50:07Z <p>When you overwrite a method from a parent class you should use the @Override.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94386#94386 2 Answer by jjnguy for When do you use Java's @Override annotation and why? jjnguy 2008-09-18T16:50:48Z 2008-09-18T16:50:48Z <p>I always use the tag. It is a simple compile-time flag to catch little mistakes that I might make.</p> <p>It will catch things like <code>tostring()</code> instead of <code>toString()</code></p> <p>The little things help in large projects.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94388#94388 2 Answer by Greg Mattes for When do you use Java's @Override annotation and why? Greg Mattes 2008-09-18T16:50:56Z 2008-09-18T16:50:56Z <p>Whenever a method overrides another method, or a method implements a signature in an interface.</p> <p>The @Override annotation assures you that you did in fact override something. Without the annotation you risk a misspelling or a difference in parameter types and number.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94391#94391 0 Answer by JeeBee for When do you use Java's @Override annotation and why? JeeBee 2008-09-18T16:51:12Z 2008-09-18T16:51:12Z <p>It does allow you (well, the compiler) to catch when you've used the wrong spelling on a method name you are overriding.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94411#94411 58 Answer by Dave L. for When do you use Java's @Override annotation and why? Dave L. 2008-09-18T16:53:19Z 2008-09-18T16:53:19Z <p>Use it every time you override a method for two benefits. Do it so that you can take advantage of the compiler checking to make sure you actually are overriding a method when you think you are. This way, if you make a common mistake of misspelling a method name or not correctly matching the parameters, you will be warned that you method does not actually override as you think it does. Secondly, it makes your code easier to understand because it is more obvious when methods are overwritten.</p> <p>Additionally, in Java 1.6 you can use it to mark when a method implements an interface for the same benefits. I think it would be better to have a separate annotation (like <code>@Implements</code>), but it's better than nothing.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94419#94419 3 Answer by toluju for When do you use Java's @Override annotation and why? toluju 2008-09-18T16:54:08Z 2008-09-18T16:54:08Z <p>Using the <code>@Override</code> annotation acts as a compile-time safeguard against a common programming mistake. It will throw a compilation error if you have the annotation on a method you're not actually overriding the superclass method.</p> <p>The most common case where this is useful is when you are changing a method in the base class to have a different parameter list. A method in a subclass that used to override the superclass method will no longer do so due the changed method signature. This can sometimes cause strange and unexpected behavior, especially when dealing with complex inheritance structures. The <code>@Override</code> annotation safeguards against this.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94422#94422 1 Answer by Tom Hawtin - tackline for When do you use Java's @Override annotation and why? Tom Hawtin - tackline 2008-09-18T16:54:25Z 2008-09-18T16:54:25Z <p>If you find yourself overriding (non-abstract) methods very often, you probably want to take a look at your design. It is very useful when the compiler would not otherwise catch the error. For instance trying to override initValue() in ThreadLocal, which I have done.</p> <p>Using @Override when implementing interface methods (1.6+ feature) seems a bit overkill for me. If you have loads of methods some of which override and some don't, that probably bad design again (and your editor will probably show which is which if you don't know).</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94424#94424 2 Answer by David Pierre for When do you use Java's @Override annotation and why? David Pierre 2008-09-18T16:54:45Z 2008-09-18T16:54:45Z <p>The best practive is to always use it (or have the IDE fill them for you)</p> <p>@Override usefulness is to detect changes in parent classes which has not been reported down the hierarchy. Without it, you can change a method signature and forget to alter its overrides, with @Override, the compiler will catch it for you.</p> <p>That kind of safety net is always good to have.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94447#94447 11 Answer by jon for When do you use Java's @Override annotation and why? jon 2008-09-18T16:56:51Z 2008-09-18T16:56:51Z <p>I think it is most useful as a compile-time reminder that the intention of the method is to override a parent method. As an example:</p> <pre><code>protected boolean displaySensitiveInformation() { return false; } </code></pre> <p>You will often see something like the above method that overrides a method in the base class. This is an important implementation detail of this class -- we don't want sensitive information to be displayed. </p> <p>Suppose this method is changed in the parent class to </p> <pre><code>protected boolean displaySensitiveInformation(Context context) { return true; } </code></pre> <p>This change will not cause any compile time errors or warnings - but it completely changes the intended behavior of the subclass.</p> <p>To answer your question: you should use the @Override annotation if the lack of a method with the same signature in a superclass is indicative of a bug. </p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94759#94759 0 Answer by Asgeir S. Nilsen for When do you use Java's @Override annotation and why? Asgeir S. Nilsen 2008-09-18T17:37:33Z 2008-09-18T17:37:33Z <p>@Override on interfaces actually are helpful, because you will get warnings if you change the interface.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94898#94898 2 Answer by willCode4Beer for When do you use Java's @Override annotation and why? willCode4Beer 2008-09-18T17:49:37Z 2008-09-18T17:49:37Z <p>I use it everywhere. On the topic of the effort for marking methods, I let Eclipse do it for me so, it's no additional effort.</p> <p>I'm religious about continuous refactoring.... so, I'll use every little thing to make it go more smoothly.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/95019#95019 2 Answer by sylvarking for When do you use Java's @Override annotation and why? sylvarking 2008-09-18T18:00:51Z 2008-09-18T18:00:51Z <p>Its best to use it for every method intended as an override, and Java 6+, every method intended as an implementation of an interface.</p> <p>First, it catches mispellings like "hashcode" instead of "hashCode" at compile-time. It can be baffling to debug why the result of your method doesn't seem to match your code when the real cause is that your code is never invoked.</p> <p>Also, if a superclass changes a method signature, overrides of the older signature can be "orphaned", left behind as confusing dead code. The @Override annotation will help you identify these orphans so that they can be modified to match the new signature.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/95490#95490 5 Answer by Bill K for When do you use Java's @Override annotation and why? Bill K 2008-09-18T18:40:02Z 2008-09-18T18:40:02Z <p>There are many good answers here, so let me offer another way to look at it...</p> <p>There is no overkill when you are coding. It doesn't cost you anything to type @override, but the savings can be immense if you misspelled a method name or got the signature slightly wrong.</p> <p>Think about it this way: In the time you navigated here and typed this post, you pretty much used more time than you will spend typing @override for the rest of your life; but one error it prevents can save you hours.</p> <p>Java does all it can to make sure you didn't make any mistakes at edit/compile time, this is a virtually free way to solve an entire class of mistakes that aren't preventable in any other way outside of comprehensive testing.</p> <p>Could you come up with a better mechanism in Java to ensure that when the user intended to override a method, he actually did?</p> <p>Another neat effect is that if you don't provide the annotation it will warn you at compile time that you accidentally overrode a parent method--something that could be significant if you didn't intend to do it.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/95507#95507 1 Answer by Diastrophism for When do you use Java's @Override annotation and why? Diastrophism 2008-09-18T18:41:25Z 2008-09-18T18:41:25Z <p>Another thing it does is it makes it more obvious when reading the code that it is changing the behavior of the parent class. Than can help in debugging.</p> <p>Also, in Joshua Block's book Effective Java (2nd edition), item 36 gives more details on the benefits of the annotation.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/1368133#1368133 0 Answer by Rune for When do you use Java's @Override annotation and why? Rune 2009-09-02T14:44:36Z 2009-09-02T14:44:36Z <p>@Override on <em>interface implementation</em> is inconsistent since there is no such thing as "overriding an interface" in java. </p> <p>@Override on <em>interface implementation</em> is useless since in practise it catches no bugs that the compilation wouldn't catch anyway. There is only one, far fetched scenario where override on implementers actually does something: If you implement an interface, and the interface REMOVES methods, you will be notified on compile time that you should remove the unused implementations. Notice that if the new version of the interface has NEW or CHANGED methods you'll obviously get a compile error anyways as you're not implementing the new stuff.</p> <p>@Override on interface implementers should never have been permitted in 1.6, and with eclipse sadly choosing to auto-insert the annotations as default behavior, we get a lot of cluttered source files. When reading 1.6 code, you cannot see from the @Override annotation if a method actually overrides a method in the superclass or just implements an interface.</p> <p>Using @Override when actually overriding a method in a superclass is fine.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/1433076#1433076 1 Answer by unknown (google) for When do you use Java's @Override annotation and why? unknown (google) 2009-09-16T13:47:31Z 2009-09-16T13:47:31Z <p>To take advantage from compiler checking you should always use Override annotation. But don’t forget that Java Compiler 1.5 will not allow this annotation when overriding interface methods. You just can use it to override class methods (abstract, or not).</p> <p>Some IDEs, as Eclipse, even configured with Java 1.6 runtime or higher, they maintain compliance with Java 1.5 and don’t allow the use @override as described above. To avoid that behaviour you must go to: Project Properties ->Java Compiler -> Check “Enable Project Specific Settings” -> Choose “Compiler Compliance Level” = 6.0, or higher.</p> <p>I like to use this annotation every time I am overriding a method independently, if the base is an interface, or class. </p> <p>This helps you avoiding some typical errors, as when you are thinking that you are overriding an event handler and then you see nothing happening. Imagine you want to add an event listener to some UI component: someUIComponent.addMouseListener(new MouseAdapter(){ public void mouseEntered() { ...do something... } });</p> <p>The above code compiles and run, but if you move the mouse inside someUIComponent the “do something” code will note run, because actually you are not overriding the base method mouseEntered (MouseEvent ev). You just create a new parameter less method mouseEntered(). Instead of that code, if you have used the @Override annotation you have seen a compile error and you have not been wasting time thinking why your event handler was not running.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/1510685#1510685 1 Answer by cedar715 for When do you use Java's @Override annotation and why? cedar715 2009-10-02T16:45:54Z 2009-10-02T16:45:54Z <ul> <li>Used only on method declarations.</li> <li>Indicates that the annotated method declaration overrides a declaration in supertype.</li> </ul> <p><em>If used consistently, it protects you from a large class of nefarious bugs.</em> </p> <p>Use @Override annotation to avoid these bugs: (Spot the bug in the following code:)</p> <pre><code>public class Bigram { private final char first; private final char second; public Bigram(char first, char second) { this.first = first; this.second = second; } public boolean equals(Bigram b) { return b.first == first &amp;&amp; b.second == second; } public int hashCode() { return 31 * first + second; } public static void main(String[] args) { Set&lt;Bigram&gt; s = new HashSet&lt;Bigram&gt;(); for (int i = 0; i &lt; 10; i++) for (char ch = 'a'; ch &lt;= 'z'; ch++) s.add(new Bigram(ch, ch)); System.out.println(s.size()); } } </code></pre> <p>source: <a href="http://my.safaribooksonline.com/9780137150021/ch06lev1sec7" rel="nofollow">Effective Java</a></p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/1691444#1691444 0 Answer by seh for When do you use Java's @Override annotation and why? seh 2009-11-07T00:35:47Z 2009-11-07T00:35:47Z <p>It seems that the wisdom here is changing. Today I installed <a href="http://www.jetbrains.com/idea/" rel="nofollow">IntelliJ IDEA</a> 9 and noticed that its "<a href="http://www.jetbrains.com/idea/documentation/inspections.jsp" rel="nofollow">missing @Override inspection</a>" now catches not just implemented abstract methods, but implemented interface methods as well. In my employer's code base and in my own projects, I've long had the habit to only use @Override for the former -- implemented abstract methods. However, rethinking the habit, the merit of using the annotations in both cases becomes clear. Despite being more verbose, it does protect against the <em>fragile base class</em> problem (not as grave as C++-related examples) where the interface method name changes, orphaning the would-be implementing method in a derived class.</p> <p>Of course, this scenario is mostly hyperbole; the derived class would no longer compile, now lacking an implementation of the renamed interface method, and today one would likely use a <em>Rename Method</em> refactoring operation to address the entire code base en masse.</p> <p>Given that IDEA's inspection is not configurable to ignore implemented interface methods, today I'll change both my habit and my team's code review criteria.</p> http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/1843124#1843124 0 Answer by Sree for When do you use Java's @Override annotation and why? Sree 2009-12-03T21:43:35Z 2009-12-03T21:43:35Z <p>Simple , when you wanna override a method present in your super class , use @Override annotation to make a correct override , the compiler will warn you if you dont override it correctly </p>