java-foreach同时获取Map的键和值(模板)

Map.Entry<Byte, Integer> tmp = new HashMap<>();
for (Map.Entry<Byte, Integer> tmp : map.entrySet()) {
System.out.println("[key="+tmp.getKey()+"]"+"[value="+tmp.getValue()+"]");
}
posted @ 2024-11-10 02:35  基础狗  阅读(4)  评论(0编辑  收藏  举报