真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java中map的九種遍歷方法-創(chuàng)新互聯(lián)

Java中map的九種遍歷方法

1. 通過for和map.entrySet()遍歷

創(chuàng)新互聯(lián)公司專注于石獅網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供石獅營銷型網(wǎng)站建設(shè),石獅網(wǎng)站制作、石獅網(wǎng)頁設(shè)計、石獅網(wǎng)站官網(wǎng)定制、小程序定制開發(fā)服務(wù),打造石獅網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供石獅網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
public void ergodicMap(Mapmap){for(Map.Entryentry : map.entrySet()){System.out.println("Key:"+entry.getKey()+",Value:"+entry.getValue());
    }
}

2. 通過for,iterator和map.entrySet()遍歷

public void ergodicMap(Mapmap){for(Iterator>entries = map.entrySet().iterator();entries.hasNext();){Map.Entryentry = entries.next();
        System.out.println("Key:"+entry.getKey()+",Value:"+entry.getValue());
    }
}

3. 通過while,Iterator和map.entrySet()遍歷

public void ergodicMap(Mapmap){Iterator>entries = map.entrySet().iterator();
    while(entries.hasNext()){ Map.Entryentry = entries.next();
        System.out.println("Key:"+entry.getKey()+",Value:"+entry.getValue());
    }
}

4. 通過for和map.keySet()遍歷

public void ergodicMap(Mapmap){for(Integer key : map.keySet()){System.out.println("Key:"+key+",Value:"+map.getKey());
    }
}

5. 通過for,Iterator和map.keySet()遍歷

public void ergodicMap(Mapmap){for(Iteratorkey = map.keySet().iterator(); key.hasNext();){System.out.println("Key:"+key.next()+",Value:"+map.get(key.next()));
    }
}

6. 通過while,Iterator和map.keySet()遍歷

public void ergodicMap(Mapmap){Iteratorkey = map.keySet().iterator();
    while(key.hasNext()){System.out.println("Key:"+key.next()+",Value:"+map.get(key.next()));
    }
}
java8的遍歷方式

7. 通過map.forEach()遍歷

JDK中的forEach方法,使用率比較高。

public void ergodicMap(Mapmap){map.forEach((key,value) ->{   System.out.println("Key:"+key+",Value:"+value);
    })
}

8. Stream遍歷

public void ergodicMap(Mapmap){long sum = map.entrySet().stream().mapToLong(e ->e.getKey() + e.getValue)).sum();
    System.out.println(sum);
}

9. parallelStream遍歷

public void ergodicMap(Mapmap){long sum = map.entrySet().parallelStream().mapToLong(e ->e.getKey() + e.getValue)).sum();
   System.out.println(sum);
}

你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧


文章標題:Java中map的九種遍歷方法-創(chuàng)新互聯(lián)
網(wǎng)站鏈接:http://weahome.cn/article/dsojes.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部