Map<String,Integer> instructor = new HashMap<>();我要循环获取instructor 的key和value、
时间: 2024-06-18 11:02:12 浏览: 111
嵌套Map或者List获取key、value值
3星 · 编辑精心推荐
Map<String, Integer> instructor = new HashMap<>() 是一个键值对集合,它将一个字符串键映射到一个整数值。你可以使用循环来遍历Map中的所有键和值。以下是获取Map键和值的示例代码:
```
for (Map.Entry<String, Integer> entry : instructor.entrySet()) {
String key = entry.getKey();
Integer value = entry.getValue();
System.out.println("key: " + key + ", value: " + value);
}
```
在上面的示例中,我们使用entrySet()方法来获取Map中的所有键值对,然后使用getKey()和getValue()方法来获取每个键和值。
阅读全文