What does @Override mean?

前端 未结 3 934
眼角桃花
眼角桃花 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:26

    @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.

提交回复
热议问题