/** * Test of the cost to declare a large array */ public class declareLargeArray10 { public static void main(String[] args) { int[] anArray = new int[1000000000]; System.out.println("Hello, world!"); } }