24 lines
736 B
Java
24 lines
736 B
Java
// arrays/TestGenerated.java
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
|
import java.util.*;
|
|
import onjava.*;
|
|
|
|
public class TestGenerated {
|
|
public static void main(String[] args) {
|
|
Integer[] a = { 9, 8, 7, 6 };
|
|
System.out.println(Arrays.toString(a));
|
|
a = Generated.array(a, new CountingSupplier.Integer());
|
|
System.out.println(Arrays.toString(a));
|
|
Integer[] b = Generated.array(Integer.class,
|
|
new CountingSupplier.Integer(), 15);
|
|
System.out.println(Arrays.toString(b));
|
|
}
|
|
}
|
|
/* Output:
|
|
[9, 8, 7, 6]
|
|
[0, 1, 2, 3]
|
|
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
|
|
*/
|