jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 1 | |
2 | public class MemUsage { | ||||
3 | public static final int ROUNDS = 8; | ||||
4 | public static final int SIZE = 2000; | ||||
5 | |||||
6 | public static void main(String [] args) { | ||||
7 | String s; | ||||
8 | for (int j = 0; j < ROUNDS; j++) { | ||||
9 | s = ""; | ||||
10 | for (int i = 0; i < SIZE; i++) { | ||||
11 | s += "x"; | ||||
12 | } | ||||
13 | } | ||||
14 | } | ||||
15 | } |