대략적 메모리량

풀그림 2008. 5. 8. 17:06

. 테스트 코드

public static void main(String[] args) {

             Hashtable<Integer, String> ipList = new Hashtable<Integer, String>();

             int size = Integer.parseInt(args[0]);

             for (int i = 0; i < size; i++)

                           ipList.put(i, String.valueOf(i));

             try {

                           System.in.read();

             } catch (IOException e) {

                           e.printStackTrace();

             }

             System.out.println("end");

}

 

. 실행결과

java -Xmx1024m Test 2000000

개수

순수 메모리량(KB)

VM 포함 메모리량(KB)

VM 포함 메모리량(MB)

1000000

107,356 KB

116,348 KB

113 MB

2000000

217,184 KB

296,256 KB

289 MB

Posted by 파이팅야
,