2

谁能教我如何使用-Xms1024m -Xmx1024m 之类的参数来增加堆大小?Program参数和VM参数有什么区别?

4

2 回答 2

5

如果您在“参数”选项卡中转到“运行”->“运行配置”,您将找到VM Arguments可以添加此内容的部分。

VM 参数中的示例条目

-Xms50M -Xmx128M

Program Arguments您提到将传递给主类的参数。

于 2013-08-07T07:53:21.113 回答
3

转到 Eclipse 目录中的 eclipse.ini 文件。

 -startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20130225-1645.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20130228-0336
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vmargs
-Xms1152m
-Xmx1152m

和改变

**openFile
    -vmargs
    -Xms1152m
    -Xmx1152m**

因此。

于 2013-08-07T08:55:21.807 回答