您的位置首页生活快答 map怎么遍历 Simone 发布于 2025-01-13 11:02:12 607 阅读 map怎么遍历的有关信息介绍如下:通过map.entrySet()转成Set 再遍历。上面的方法是加入list集合再遍历Set> entries = map.entrySet();for (Map.Entry entry:entries) {System.out.println("entry.getKey()----"+entry.getKey()+"======entry.getValue()----"+entry.getValue());}