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

java知识点

时间:2017-03-16 20:22:45      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:code   java   color   new   key   entry   log   blog   bsp   

1.同时获取hash的键值对

Map<Integer, PriorityQueue<Integer>> studentsScores = new HashMap<>();
for (Map.Entry<Integer, PriorityQueue<Integer>> entry : studentsScores.entrySet()) {
            int id = entry.getKey();
            PriorityQueue<Integer> scores = entry.getValue();
}

 

java知识点

标签:code   java   color   new   key   entry   log   blog   bsp   

原文地址:http://www.cnblogs.com/chengebigdata/p/6561282.html

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