List of usage examples for java.util.stream IntStream toArray
int[] toArray();
From source file:Main.java
public static void main(String[] args) { IntStream i = IntStream.of(6, 5, 7, 1, 2, 3, 3); int[] v = i.toArray(); for (int n : v) { System.out.println(n);// www .ja v a 2s . c om } }