Java 遍歷Map時(shí) 刪除元素
來源:易賢網(wǎng) 閱讀:3513 次 日期:2014-09-05 10:41:54
溫馨提示:易賢網(wǎng)小編為您整理了“Java 遍歷Map時(shí) 刪除元素”,方便廣大網(wǎng)友查閱!
* 會(huì)引發(fā) 并發(fā)修改異常,可以通過迭代器的remove():

* 從迭代器指向的 collection 中移除當(dāng)前迭代元素

* 來達(dá)到刪除訪問中的元素的目的。

* */

public static void main(String[] args) {

map.put(1,"one");

map.put(2,"two");

map.put(3,"three");

map.put(4,"four");

map.put(5,"five");

map.put(6,"six");

map.put(7,"seven");

map.put(8,"eight");

map.put(5,"five");

map.put(9,"nine");

map.put(10,"ten");

Iterator<Map.Entry<Integer, String>> it = map.entrySet().iterator();

while(it.hasNext()){

Map.Entry<Integer, String> entry=it.next();

int key=entry.getKey();

if(key%2==1){

System.out.println("delete this: "+key+" = "+key);

//map.put(key, "奇數(shù)"); //ConcurrentModificationException

//map.remove(key); //ConcurrentModificationException

it.remove(); //OK

}

}

//遍歷當(dāng)前的map;這種新的for循環(huán)無法修改map內(nèi)容,因?yàn)椴煌ㄟ^迭代器。

System.out.println("-------nt最終的map的元素遍歷:");

for(Map.Entry<Integer, String> entry:map.entrySet()){

int k=entry.getKey();

String v=entry.getValue();

System.out.println(k+" = "+v);

}

}

}

更多信息請查看IT技術(shù)專欄

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:Java 遍歷Map時(shí) 刪除元素
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)