当我在“Eclipse”IDE中创建一个新项目时。它突然显示一条警告消息“Out of memory error”。我无法确定原因。 如果有人知道原因请告诉我。
答案 0 :(得分:22)
尝试使用以下参数启动eclipse:
eclipse.exe -vmargs -Xms512m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=128m
或者根据您的要求证明这些参数
答案 1 :(得分:11)
如果您在Mac OS X上运行Eclipse,那么
右键点击eclipse.app
图标
点击Show Package Contents
打开eclipse.ini
文件
更改以下参数
-Xms512m
-Xmx3000m (Hoping your developer box has >4GB of memory)
添加以下参数
-XX:PermSize=256m
-XX:MaxPermSize=512m
答案 2 :(得分:3)
最明显的解释是你真的没有记忆。在这种情况下,使用更大的堆启动Eclipse应该有帮助
-vmargs -Xmx256M
改变256M,看看哪种方式适合你。
如果您只有几个简单的项目,我不希望看到这个问题。如果你正在使用额外的插件,那么可以想象你需要增加堆的数量。
答案 3 :(得分:1)
不确定是否与您的问题相关,但我在使用OpenJDK 7的Swing项目时遇到了类似的问题。
在我的应用程序启动(Run
按钮)和关闭('X'
/ Alt+F4
)几个周期之后,我在控制台中出现了这个错误:
Exception in thread "main" java.lang.OutOfMemoryError: unable to create new native thread
at java.lang.Thread.start0(Native Method)
at java.lang.Thread.start(Thread.java:691)
at sun.awt.AWTAutoShutdown.activateBlockerThread(AWTAutoShutdown.java:334)
at sun.awt.AWTAutoShutdown.notifyPeerMapUpdated(AWTAutoShutdown.java:215)
at sun.awt.AWTAutoShutdown.registerPeer(AWTAutoShutdown.java:348)
at sun.awt.SunToolkit.targetCreatedPeer(SunToolkit.java:313)
at sun.awt.X11.XToolkit.createFrame(XToolkit.java:410)
at java.awt.Frame.addNotify(Frame.java:477)
at java.awt.Window.show(Window.java:1031)
at java.awt.Component.show(Component.java:1651)
at java.awt.Component.setVisible(Component.java:1603)
at java.awt.Window.setVisible(Window.java:1014)
at tool.BAT.main(BAT.java:11)
有时,我还有另一种错误:
Error occurred during initialization of VM
java.lang.OutOfMemoryError: unable to create new native thread
然后,如果我再试一次,Java崩溃了:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x0000000000000000, pid=30388, tid=139776854689536
#
# JRE version: 7.0_07-b30
# Java VM: OpenJDK 64-Bit Server VM (23.2-b09 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C 0x0000000000000000
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# /home/mcmlxxxvi/workspace/bat/hs_err_pid30388.log
#
# If you would like to submit a bug report, please include
# instructions on how to reproduce the bug and visit:
# http://icedtea.classpath.org/bugzilla
#
top
揭示了问题的原因(注意虚拟内存使用情况):
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
30619 mcmlxxxv 20 0 3271m 390m 45m S 2.0 13.0 0:38.88 java
30667 mcmlxxxv 20 0 2172m 35m 12m S 0.3 1.2 0:01.00 java
30688 mcmlxxxv 20 0 2172m 35m 12m S 0.3 1.2 0:00.96 java
30710 mcmlxxxv 20 0 2172m 35m 12m S 0.0 1.2 0:00.97 java
这些是我的申请的所有实例,但尚未结束。仍然不确定为什么每个实例分配了如此多的虚拟内存 - 可能有一些选择。 (顺便说一下,我有3GiB的物理内存)。
这是我的main()方法:
public static void main(String[] args) {
JFrame frame = new JFrame();
//frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400, 300);
frame.setVisible(true);
}
我在教程中看到了注释行,并专门禁用它以查看会发生什么。发生了什么事情,它违约了HIDE_ON_CLOSE
,没有关闭并处理框架。
将setDefaultCloseOperation
设置为 EXIT_ON_CLOSE 是我的解决方案。有兴趣看到更多知识渊博的人对此的意见。
答案 4 :(得分:1)
之前
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
之后:
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
512M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
答案 5 :(得分:-1)
你必须使用 creat-react-app