赞
踩
我的Eclipse版本是3. 6.1
@Override 时出现以下错误:
The method XXXXXX of type XXXXXXXXX must
override a superclass method
上网搜索原来原因是:
实现类里面使用了 @Override,那么在JDK1.5下要使用@Override 这个annotation 必须保证 被标注方法来源于class 而不是interface,
即The method of type must override a superclass method,提示的是实现类必须实现接口的方法。
解决方法:
将项目的jdk从1.5改为1.6
我就按如下步骤:
1. window ->preferences... -> java -> Compiler
2. Compiler compliance level : 1.6
查看发现设置是1.6,并非1.5,我很疑惑, 后来才发现原来是必须是将项目的JDK1.5改为1.6,关键是“项目”两个字,
我就点击“window ->preferences... -> java -> Compiler ”页面右上角的“Configure Project Specific Setttings...”,
选择你的工程项目就可以了。
原来如此。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。