我有這個數組練習。我想知道是如何工作的,如果有人能Java Array練習
- 我們有一個int類型的對象數組稱爲
index
有4個元素 - 我們有類型的對象數組字符串稱爲
islands
有4個元素
我不明白事情是如何傳遞給對方的,我需要一個很好的解釋。
class Dog {
public static void main(String [] args) {
int [] index = new int[4];
index[0] = 1;
index[1] = 3;
index[2] = 0;
index[3] = 2;
String [] islands = new String[4];
islands[0] = "Bermuda";
islands[1] = "Fiji";
islands[2] = "Azores";
islands[3] = "Cozumel";
int y = 0;
int ref;
while (y < 4) {
ref = index[y];
System.out.print("island = ");
System.out.println(islands[ref]);
y ++;
}
}
你的「具體」問題是什麼? –
考慮使用for循環來代替while循環(int y = 0; y <4; y ++)。只是一個更好的風格。無論如何,你的問題是什麼! – SIGKILL
另請注意,「家庭作業」標記已被正式棄用 –