有没有办法从 Eclipse 中的 Content Assist 中删除私有成员
我正在 Eclipse 中编写 Java。 我来自 Visual Studio,使用 Resharper 编写 C#。
当内容辅助出现时,我会看到一个类的所有私有成员,即使我没有编辑该类。 有什么办法可以把它关掉吗?
这真的很让人分心。
I'm in Eclipse writing Java. I come from Visual Studio with Resharper writing C#.
When Content Assist comes up, I see all the private members of a class, even though I'm not editing that class. Is there a way I can turn that off?
It's really distracting.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
窗口-> 首选项-> Java-> 编辑器->内容辅助-> 隐藏在调用上下文中不可见的提案
Window -> Preferences -> Java -> Editor ->Content Assist -> Hide proposals not visible in the invocation context
如果您没有明确编写方法的访问级别(公共、受保护或私有),那么它将默认为包私有,并且这些方法可能会显示在 Content Assist 中。
If you do not explicitly write a method's access level (public, protected, or private), then it will default to package-private, and these methods will probably been shown in Content Assist.