-4
for循環語句如何工作?我們只能用它來打印數組嗎?解釋這個for循環技術的工作。它是如何工作的一步一步?
for (Integer i : arrayToSort){
System.out.println(i.intValue());
}
for循環語句如何工作?我們只能用它來打印數組嗎?解釋這個for循環技術的工作。它是如何工作的一步一步?
for (Integer i : arrayToSort){
System.out.println(i.intValue());
}
這是for-each循環,你可以像使用普通for循環一樣使用它。只有語法不同。請看https://docs.oracle.com/javase/8/docs/technotes/guides/language/foreach.html