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