19 lines
482 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: housekeeping/ArrayNew.java
// <20>2015 MindView LLC: see Copyright.txt
// Creating arrays with new.
import java.util.*;
import static com.mindviewinc.util.Print.*;
public class ArrayNew {
public static void main(String[] args) {
int[] a;
Random rand = new Random(47);
a = new int[rand.nextInt(20)];
print("length of a = " + a.length);
print(Arrays.toString(a));
}
} /* Output:
length of a = 18
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
*///:~