這篇文章給大家介紹怎么在Java中利用entrySet方法獲取Map集合的元素,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
創(chuàng)新互聯(lián)公司-成都網(wǎng)站建設(shè)公司,專注成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、網(wǎng)站營銷推廣,申請域名,網(wǎng)頁空間,網(wǎng)站托管、服務(wù)器托管有關(guān)企業(yè)網(wǎng)站制作方案、改版、費(fèi)用等問題,請聯(lián)系創(chuàng)新互聯(lián)公司。
具體內(nèi)容如下
/*--------------------------------- 使用entrySet方法取出Map集合中的元素: ....該方法是將Map集合中key與value的關(guān)系存入到了Set集合中,這個(gè)關(guān)系的數(shù)據(jù)類型是Map.Entry ....entrySet方法返回值類型的具體寫法為:Set< Map.Entry> ----------------------------------*/ package pack04; import java.util.*; public class MapDemo { public static void main(String[] args) { Map ma = new HashMap (); //給集合中存入元素 ma.put(1, "abc01"); //這里將基本數(shù)據(jù)類型自動(dòng)裝箱 ma.put(2, "abc02"); ma.put(3, "abc03"); ma.put(4, "abc04"); //將Map集合當(dāng)中的映射關(guān)系取出,存入到Set集合當(dāng)中 Set< Map.Entry > entryset = ma.entrySet(); //取迭代器 Iterator< Map.Entry > it = entryset.iterator(); //獲取Map集合中的元素 while( it.hasNext() ) { Map.Entry en = it.next(); Integer maKey = en.getKey(); String maValue = en.getValue(); System.out.println( maKey + " : " + maValue ); } } }
關(guān)于怎么在Java中利用entrySet方法獲取Map集合的元素就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。