Eclipse Java内容辅助不适用于特定类,适用于项目中的其他类
我在 Eclipse 中遇到了奇怪的错误,当我按 ctrl+space 时,内容辅助总是显示为空,在底部显示错误“没有可用的完成”。此错误针对特定类,而内容辅助在其他类中运行良好。
我的eclipse是windows xp下的helios。
我尝试清理项目,删除并重新插入文件,尝试检查首选项> java >编辑器>内容辅助>高级下的所有值,但没有任何效果。
我应该做什么来防止这个错误?
I am stuck in strange error in my eclipse, in which content assist always shows empty when I press ctrl+space, in bottom it shows error "No completions available". This error is for a particular class, while content assist works well in other class.
My eclipse is helios under windows xp.
I have tried cleaning the project, removing and re inserting the file, tried to check all the values under preferences>java>editor>content assist>advanced but nothing works.
What should I do to prevent this error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查内容辅助不起作用的类的可见性。如果您尝试调用该类的方法,请同时检查该方法的可见性。如果您希望该类/方法可以在包外部访问,则必须将该类/方法设为
public
您可以了解有关可见性修饰符的更多信息 此处Check the visibility of the class with which content assist does not work. If you are trying to call a method of that class, then check the visibility of that method as well. If you want that class/method to be accessible outside the package the you have to make that class/method
public
You can learn more about the visibility modifiers here