Mega Code Archive

 
Categories / Java / Collections Data Structure
 

Creating arrays with new

// : c04:ArrayNew.java // Creating arrays with new. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. import java.util.Random; public class ArrayNew {   static Random rand = new Random();   public static void main(String[] args) {     int[] a;     a = new int[rand.nextInt(20)];     System.out.println("length of a = " + a.length);     for (int i = 0; i < a.length; i++)       System.out.println("a[" + i + "] = " + a[i]);   } } ///:~