java中map获取所有key值
时间: 2024-05-07 07:22:58 浏览: 159
详解JAVA里面获取map的key和value的方法
5星 · 资源好评率100%
要获取Java中Map的所有key值,可以使用Map的keySet()方法,它会返回一个Set集合,该集合包含了Map中的所有key值。你可以使用迭代器或者for-each语句遍历Set集合中的每一个key值,以获取Map中的所有key。
以下是一个示例代码:
```
Map<String, Integer> map = new HashMap<>();
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
// 获取所有key值
Set<String> keySet = map.keySet();
// 遍历Set集合中的每一个key
for (String key : keySet) {
System.out.println(key);
}
```
输出结果为:
```
A
B
C
```
阅读全文