[草稿] 此贴,描述有问题,不必浪费时间看,等想清楚再发帖。

hackerstesr 2013-12-17
此贴,描述有问题,不必浪费时间看,等想清楚再发帖。

(楼主似乎是读了什么书或者博客之后自己做实验遇到了问题?请问是看的什么资料?)

代码入如下:

	private static final int _1MB = 1024 * 1024;

	public static void main(String[] args) {
		testAllocation();
	}

	/**
	 * vm 参数:-verbose:gc -Xms40M -Xmx40M -Xmn30M -XX:SurvivorRatio=1
	 * -XX:+PrintGCDetails
	 */
	public static void testAllocation() {
		byte[] allocation1, allocation2, allocation3, allocation4;
		allocation1 = new byte[4 * _1MB];
		allocation2 = new byte[4 * _1MB];
		allocation2 = new byte[4 * _1MB];
		allocation2 = new byte[4 * _1MB];
		allocation2 = new byte[4 * _1MB];
	}



Global site tag (gtag.js) - Google Analytics