遍历Map

for (Map.Entry<String, Double> map : temp.entrySet()) {
         map.getKey();
         map.getValue();
}

你可能感兴趣的:(遍历Map)