Java复制二维数组

走着路睡觉
  • java
小于 1 分钟

int[][] copy = Arrays.stream(matrix).map(int[]::clone).toArray(int[][]::new);

上次编辑于:
贡献者: zhaojingbo
Loading...