【JAVA】Multiple markers at this line @Override的解决方法

发布时间 2023-12-15 11:56:25作者: 乡屯米卒

【未解决】我的是1.8,都显示的是1.8

使用Eclipse 进行项目开发,在实现类中的方法前面如果添加@Override就提示“Multiple markers at this line”的错误,问题描述如下

Multiple markers at this line
- The method getStudentByID(String) of type StudentBeanImpl must override a superclass method
- implements mgr.jc.student.service.IStudentBean.getStudentByID

 

出现上述问题的原因:JDK1.5不支持这种写法。实现接口方法需要重写抽象方法。

解决上述问题的方法如下:

方法1.选择Eclipse的Window→Preferences→Java→Compiler,把Compiler compliance level从1.5改成1.6以上。

 

方法2.右击project选择最后一个properties选择左侧的java compiler,勾选里面的框框,把java编辑器版本都改成1.6。

 

方法3.右击project下的 JRE System Library[JavaSE-1.5]→Properties,Execution environment 选择“JavaSE-1.6(JDK1.6.0_10)”,点击确定即可。

 

上述3种方法都能解决题目中提到的问题,可以根据自己的习惯选择相应的解决方法。