使用(element:collection)使用for循環訪問集合時,我對數據所做的更改在循環期間只保留相同。For循環(元素:集合)未進行永久更改
這裏是我的代碼:
String[] names = {"bob", "fred", "marcus", "robert", "jack", "steve", "nathan", "tom", "freddy", "sam"};
for(String indexData : names)
{
indexData = indexData.toUpperCase();
System.out.println(indexData);
}
System.out.println("this is word 5 in the array: " + names[4]);
輸出:
BOB
FRED
MARCUS
ROBERT
JACK
STEVE
NATHAN
TOM
FREDDY
SAM
this is word 5 in the array: jack
我的問題是使用這種類型的循環我怎麼做永久性的變化?
需要正常的循環沒有提高循環 – 2014-10-26 16:32:14