我刚刚开始制作《我的世界》 mod,一切正常,直到运行程序(minecraft forge 1.12.2
)。它说:
Initial heap size set to a larger value than the maximum heap size can
after that: picked up _JAVA_OPTIONS: -Xmx512M
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release.
检查环境变量时,我发现了_JAVA_OPTIONS
并将其删除,但问题仍然存在,该怎么办?
我在Windows 10计算机上,内存为8 GB。
答案 0 :(得分:0)
Initial heap size set to a larger value than the maximum heap size can
表示最大堆大小小于初始堆大小。
要解决此问题,只需添加_JAVA_OPTIONS并将其设置为
-Xmx512M -Xms512M
。
-Xms512M
只需将初始堆大小设置为512mb。