java取数组中的数组
时间: 2023-10-22 11:15:28 浏览: 177
可以使用二维数组的方式来取数组中的数组,例如:
```java
int[][] array = {{1, 2}, {3, 4}, {5, 6}};
int[] subArray = array[1]; // 将第二个数组取出来
int element = subArray[0]; // 取出第二个数组中的第一个元素
System.out.println(element); // 输出 3
```
这样就能取出数组中的数组元素了。
阅读全文