Possible Duplicate:
What's “@Override” there for in java?
I've never put "@Override" before a method until now. I see some code examples with it, but I don't understand its utility. I'd love some explanation.
Many thanks,
JDelage
I've never put "@Override" before a method until now. I see some code examples with it, but I don't understand its utility. I'd love some explanation. Many thanks, JDelage
| |||||||||||
feedback
|
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.
|
First, you can't annotate a class with You don't have to annotate overriding methods but if you use this annotation and your annotated method does not override a superclass method, then the compiler will generate an error message. | |||
|
feedback
|
http://download.oracle.com/javase/6/docs/api/java/lang/Override.html The case I like to explain its use is when overriding This will error because
| |||||||
feedback
|
|
The best example - overriding If you write a class like this:
then you've overloaded the equals method, rather than overriding If you annotate the equals method with In Java 6, you can use this for implementing interface methods too - this is handy when you're only adding a method to your class to satisfy some interface, and hence the compiler can check that it's required and alert you to the interface changing. As with all annotations it's effectively a programmatic comment, but having the compiler check that your assumptions are (still) correct is very handy in these cases. | |||
|
feedback
|
|
It's there to express that you expect the method to be overriding a superclass method. It does come in handy when you make a mistake spelling the method name or give it the wrong parameters so that it does not override what you thought it was overriding. | |||
|
feedback
|
|
It's a conventional comment. Some compilers make sure that the function followed by @Override is actually an override... just a failsafe | |||
|
feedback
|