blob: 710031bb20067480d4a2cf896b3ef84e90b6b951 [file] [log] [blame]
jeffhao5d1ac922011-09-29 17:41:15 -07001
2public 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}