jdk1.5和jdk1.6对于@override支持的区别

来源:岁月联盟 编辑:exp 时间:2012-10-11

在基类中声明的方法,在继承类中实现的话可以用@Override进行标注。1.5和1.6均正常。但@Override注释在jdk1.5环境下只能用于对继承的类的方法的重写,而不能用于对实现的接口中的方法的实现。

public interface StudentVS
{
 public void saveStudent(Student s);
}


public class StudentVSImpl implements StudentVS
{
 @Override
 public void saveStudent(Student s)
 {
  ..........
 }