从 Java 中的 HashMap 中检索所有键
假设我们的 HashMap 如下所示 −
HashMap<Integer, String>map = new HashMap<Integer, String>(); map.put(10, "A"); map.put(20, "B"); map.put(30, "C"); map.put(40, "D"); map.put(50, "E"); map.put(60, "F"); map.put(70, "G"); map.put(80, "H");
为了检索所有键,使用迭代器依次检索每个键值对 −
Set<Integer>set = map.keySet();
Iterator<Integer>i = set.iterator();
while (i.hasNext()) {
Integer res = i.next();
System.out.println(res + ": " + map.get(res));
}示例
import java.util.HashMap;
import java.util.Iterator;
import java.util.Set;
public class Demo {
public static void main(String[] args) {
HashMap<Integer, String>map = new HashMap<Integer, String>();
map.put(10, "A");
map.put(20, "B");
map.put(30, "C");
map.put(40, "D");
map.put(50, "E");
map.put(60, "F");
map.put(70, "G");
map.put(80, "H");
Set<Integer>set = map.keySet();
Iterator<Integer>i = set.iterator();
while (i.hasNext()) {
Integer res = i.next();
System.out.println(res + ": " + map.get(res));
}
}
}输出
80: H 50: E 20: B 70: G 40: D 10: A 60: F 30: C
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP