是的,有一个最大值,但它取决于系统。试试看,加倍直到达到极限,然后向下搜索。至少对于 Linux 上的 Sun JRE 1.6,如果不总是提供信息丰富的错误消息,您会得到有趣的信息(peregrino 是运行 32 位 ubuntu 的上网本,具有 2G RAM 并且没有交换):
peregrino:$ java -Xmx4096M -cp bin WheelPrimes
Invalid maximum heap size: -Xmx4096M
The specified size exceeds the maximum representable size.
Could not create the Java virtual machine.
peregrino:$ java -Xmx4095M -cp bin WheelPrimes
Error occurred during initialization of VM
Incompatible minimum and maximum heap sizes specified
peregrino:$ java -Xmx4092M -cp bin WheelPrimes
Error occurred during initialization of VM
The size of the object heap + VM data exceeds the maximum representable size
peregrino:$ java -Xmx4000M -cp bin WheelPrimes
Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.
(experiment reducing from 4000M until)
peregrino:$ java -Xmx2686M -cp bin WheelPrimes
(normal execution)
大多数都是不言自明的,除了 -Xmx4095M 这很奇怪(可能是有符号/无符号比较?),并且它声称在没有交换的 2GB 机器上保留 2686M。但它确实暗示了 32 位 VM 的最大大小是 4G 而不是 2G,如果操作系统允许您处理那么多的话。