IntelliJ IDEA 在源代码完成时冻结
我正在使用 IntelliJ IDEA 10.0 进行 Java 开发。几天前,它开始揭示自动完成的奇怪行为:带有完成选项的弹出窗口像往常一样出现, 但IDEA在选择一个选项后就完全冻结了。
缓存清理没有帮助。
还有其他人遇到过这种情况吗?
更新:另一个症状:IDEA在尝试自动实现方法时冻结(例如toString
)
I'm using IntelliJ IDEA 10.0 for Java development. A few days ago it started to reveal a strange behavior with auto-completion: pop-ups with completion options appears as usual,
but IDEA completely freezes after choosing an option.
Cache cleaning doesn't help.
Has anyone else encountered this?
Update: Another symptom: IDEA freezes when trying to auto-implement method (e.g. toString
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是由于垃圾收集器努力工作所致。
尝试为您的 IDE 提供更多内存。您可以在
idea.exe.vmoptions
中执行此操作(如果您使用 Windows)。将-xmx
属性增加到至少 512 MB。This is may be due to garbage collector working hard.
Try give your IDE more memory. You can do it in
idea.exe.vmoptions
(if you use windows). Increase-xmx
property to at least 512 MB.这可能与您描述的问题不同,但我经历过长时间(但不是永恒)的冻结,一两分钟后它就会回来响应。每当我在代码完成弹出窗口中按下 Ctrl+Alt+Space 时就会发生这种情况,这导致 IDEA 加载所有项目和外部库以浏览可能的完成选项。
This may not be the same issue you describe, but I have experienced long (but not eternal) freezes, where after a minute or two it came back to respond. This happened whenever I pressed Ctrl+Alt+Space in the code completion popup, which caused IDEA to load all project and external libraries to browse for possible completion options.