mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
12 lines
308 B
Java
12 lines
308 B
Java
// "Replace with toArray" "true"
|
|
|
|
import java.util.Arrays;
|
|
import java.util.stream.IntStream;
|
|
|
|
public class Test {
|
|
public void test(int bound) {
|
|
Integer[][] arr = IntStream.range(0, bound).mapToObj(i -> new Integer[]{i}).toArray(Integer[][]::new);
|
|
System.out.println(Arrays.toString(arr));
|
|
}
|
|
}
|