黑马程序员技术交流社区
标题:
关于Map的问题
[打印本页]
作者:
JustForYou
时间:
2015-8-2 21:59
标题:
关于Map的问题
public class Demo1 {
public static void main(String[] args) {
Map<String, Integer> map=new HashMap<String, Integer>();
map.put("huaqiangu", 23);
map.put("baizihua", 234);
map.put("tangbao", 13);
map.put("dongfang", 20);
Set<Map.Entry<String, Integer>> set=map.entrySet();
Iterator<Map.Entry<String, Integer>> it=set.iterator();
while(it.hasNext()){
Map.Entry<String, Integer> mapentry=it.next();
String key=mapentry.getKey();
Integer value=mapentry.getValue();
System.out.println(key+"--"+value);
}
}
}
复制代码
其中Set<Map.Entry<String, Integer>> set=map.entrySet();中的Map.Entry<String, Integer>到底怎么理解啊?
算是一个类吗?
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2