代码如下:
import java.util.HashMap;
import java.util.Map;
public class App {
public static void main(String[] args) {
Mapmap = new HashMap<>();
map.put("Name", "Barry");
map.put("Gender", "Male");
map.put("Age", 25);
// 第一种遍历方式
for (Map.Entryentry : map.entrySet()) {
System.out.println(entry.getKey() + " = " + entry.getValue());
}
// 第二种遍历方式
map.forEach((key, value) -> {
System.out.println(key + " = " + value);
});
// 通过遍历 key,然后再获取 value
for (String key : map.keySet()) {
System.out.println(key + " = " + map.get(key));
}
// 单独遍历 values
for (Object value : map.values()) {
System.out.println(value);
}
}
}