码迷,mamicode.com
首页 > 编程语言 > 详细

JavaSE8基础 HashMap<Integer,String> entrySet遍历 键值对的集合

时间:2017-09-15 21:38:29      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:png   ring   public   java   优秀   ack   stat   ast   现象   

 

    os :windows7 x64
    jdk:jdk-8u131-windows-x64
    ide:Eclipse Oxygen Release (4.7.0)



code:

package jizuiku0;

import java.util.HashMap;
import java.util.Map.Entry;
import java.util.Set;

/*
 * @version V17.09
 */
public class MapDemo_1111 {
	public static void main(String[] args) {
		HashMap<Integer, String> hm = init();

		System.out.println(hm);
		
		// 获取所有的键值对  对象的集合
		Set<Entry<Integer, String>> smeis= hm.entrySet();
		
		// 遍历键值对 对象的集合
		for (Entry<Integer, String> entry : smeis) {
							//      键                                                    值
			System.out.println(entry.getKey()+" : "+entry.getValue());
		}

	}

	public static HashMap<Integer, String> init() {
		HashMap<Integer, String> hm = new HashMap<Integer, String>();

		// 这里的键 在添加时是乱序的,然而在输出时 会有一个很有趣的现象
		// 要想知道这个现象背后的原因,就必须了解底层的代码实现
		// 所谓 玄之又玄,众妙之门
		hm.put(1, "北斗第一阳明贪狼太星君");
		hm.put(2, "北斗第二阴精巨门元星君");
		hm.put(5, "北斗第五丹元廉贞罡星君");
		hm.put(6, "北斗第六北极武曲纪星君");
		hm.put(7, "北斗第七天卫破军关星君");
		hm.put(3, "北斗第三福善禄存真星君");
		hm.put(4, "北斗第四玄冥文曲纽星君");
		hm.put(8, "北斗第八左辅洞明星君");
		hm.put(9, "北斗第九右弼隐光星君");

		return hm;
	}
}

 


result:
技术分享

 


Java优秀,值得学习。
学习资源:itcast和itheima视频库。如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。

JavaSE8基础 HashMap<Integer,String> entrySet遍历 键值对的集合

标签:png   ring   public   java   优秀   ack   stat   ast   现象   

原文地址:http://www.cnblogs.com/jizuiku/p/7528389.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!