What does @Override mean?

前端 未结 3 925
眼角桃花
眼角桃花 2020-12-04 09:50
public class NaiveAlien extends Alien
{

    @Override
    public void harvest(){}

}

I was trying to understand my friend\'s code, and I do not ge

3条回答
  •  时光取名叫无心
    2020-12-04 10:11

    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.

提交回复
热议问题