Eclipse编译错误
我将一些 JTB 和 JavaCC 生成的文件导入到 Eclipse 中,并且有 one 行给了我一个错误 - 第一行(注释)大多数类文件都显示“类型 java.lang.Object 不能是已解决。它是从所需的 .class 文件间接引用的”如何解决此问题?
I imported some JTB and JavaCC generated files into Eclipse and there is one line giving me an error - the first line (a comment) most of the class files says "The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files" How do I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过在项目中删除并添加 JRE?
项目
->Properties
Java Build Path
Libraries
选项卡Add Library
并再次添加默认 JREPS:
项目
->Clean
也非常有用。Have you tried removing and adding the JRE in your project?
Project
->Properties
Java Build Path
Libraries
TabAdd Library
and add the default JRE againPS:
Project
->Clean
can be very useful, too.