Java中可以使用迭代器(Iterator)或者增强型for循环(forEach)来遍历Map的key。
使用迭代器遍历Map的key的示例代码如下:
Map<String, Integer> map = new HashMap<>();
// 添加元素到Map
Iterator<String> iterator = map.keySet().iterator();
while (iterator.hasNext()) {
String key = iterator.next();
System.out.println(key);
}
使用增强型for循环遍历Map的key的示例代码如下:
Map<String, Integer> map = new HashMap<>();
// 添加元素到Map
for (String key : map.keySet()) {
System.out.println(key);
}
以上是两种常用的遍历Map的key的方法,可以根据具体需求选择适合的方式。