74
public class NaiveAlien extends Alien
{

    @Override
    public void harvest(){}

}

I was trying to understand my friend's code, and I do not get the syntax, @Override in the code. What does that do and why do we need in coding? Thanks.

Joshua Taylor
  • 84,998
  • 9
  • 154
  • 353
Woong-Sup Jung
  • 2,337
  • 4
  • 21
  • 20

3 Answers3

135

It's a hint for the compiler to let it know that you're overriding the method of a parent class (or interface in Java 6).

If the compiler detects that there IS no function to override, it will warn you (or error).

This is extremely useful to quickly identify typos or API changes. Say you're trying to override your parent class' method harvest() but spell it harvset(), your program will silently call the base class, and without @Override, you wouldn't have any warning about that.

Likewise, if you're using a library, and in version 2 of the library, harvest() has been modified to take an integer parameter, you would no longer override it. Again, @Override would quickly tell you.

EboMike
  • 76,846
  • 14
  • 164
  • 167
  • 20
    Note that @Override only works for public and protected functions. – MrMas May 09 '13 at 16:01
  • It should also be mentioned that **multiple** annotations are also possible and that other code can also be added using this. For example, when checking permissions in Android M apps, as is done in the [PermissionsDispatcher](https://github.com/hotchemi/PermissionsDispatcher). – not2qubit Jan 18 '17 at 10:00
31

This feature is called an annotation. @Override is the syntax of using an annotation to let the compiler know, "hey compiler, I'm changing what harvest does in the parent class", then the compiler can immediately say, "dude, you are naming it incorrectly". The compiler won't compile until you name it correctly.

So, without this @Override annotation, the compiler won't error and it will be considered a new method declaration. It would be difficult to recognize the error at this point.

Alexandru Furculita
  • 1,374
  • 9
  • 19
nitin1706
  • 395
  • 3
  • 4
9

@Override means you are overriding the base class method. In java6, it also mean you are implementing a method from an interface. It protects you from typos when you think are overriding a method but you mistyped something.

fastcodejava
  • 39,895
  • 28
  • 133
  • 186