我有一個二維數組,我想將其轉換爲字符串示例轉換INT [] []將字符串
欲int[][] p
轉換爲String
我用toString
但它會失敗。
int [][] p = new int[9][9];
for(int i = 0;i<9;i++) {
for(int j = 0;j<9;j++){
p[i][j] = 1;
}
}
String str="";
for(int i = 0; i< 9; i++) {
for(int j = 0; j< 9; j++)
{
str+=p[i][j].toString +" ";
}
}
'Arrays.deepToString(p);' –
'Arrays.deepToString(p)'。 –
@ElliottFrisch jinx。幾乎完全在同一時刻。 –