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.
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. |
||||
|
|
|
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 Likewise, if you're using a library, and in version 2 of the library, |
|||||
|
|
|
||||
|
|
|
this feature is called annotaion. and this"@override" is the syntex of using annotation to let compiler know, "hey Compiler, I am like changiing the way havrest do the work in parent class", then immediately compiler says, "dude, you are naming him wrongly, he wont care till the time u name him correctly". So, without this "@override", error will not be generated and this may be considered as new method declaration. and one will be searching for error. |
|||
|
|