Bootstrap

Java获取HashMap中的key

在 Java 中,从 HashMap 中获取键的最简单方法是调用 HashMap 对象上的 keySet() 方法。它返回一个包含来自 HashMap 所有键的集合。
在下面的例子中,我们将首先创建一个 HashMap 对象,在其中插入一些值,然后使用 keySet() 来获取键。

import java.util.*;

public class MyClass {
    public static void main(String args[]) {
        // Create a HashMap with some values
        HashMap<String, Integer> map = new HashMap<String, Integer>();
        map.put("Monday", 5);
        map.put("Tuesday", 6);
        map.put("Wednesday", 10);
        
        // Invoke keySet() on the HashMap object to get the keys as a set
        Set<String> keys = map.keySet();
        for ( String key : keys ) {
            System.out.println( key );
        }
    }
}

输出:

Monday
Wednesday
Tuesday
;