用循环就可以解决。。
把二维数组所有值取到一维数组中。
public static void main(String[] args) {
int [][] str2s = {{ 11, 12 },{ 21, 22 } };
int [] strs = new int[4];
System.out.println(str2s.length);
for (int i = 0; i < str2s.length; i++) {
for (int j = 0; j < str2s[i].length; j++) {
strs[i+j] = str2s[i][j];
}
}
} |