在Java中映射 keySet() 方法和示例
此方法用于返回此映射中包含的键的 Set 视图。集合由地图支持,因此对地图的更改会反映在集合中,反之亦然。
句法:
Set keySet()
参数:此方法没有参数。
返回:此方法返回一个包含指定映射键的集合。
下面的程序显示了 int keySet() 方法的实现。
方案一:
// Java code to show the implementation of
// isEmpty method in Map interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a Map of type HashMap
Map map = new HashMap<>();
System.out.println(map);
System.out.println(map.isEmpty());
}
}
输出:
{}
true
程序 2:下面是显示 hashCode() 实现的代码。
// Java code to show the implementation of
// keySet method in Map interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a Map of type HashMap
Map map = new HashMap<>();
Set s = new HashSet<>();
map.put(1, "One");
map.put(3, "Three");
map.put(5, "Five");
map.put(7, "Seven");
map.put(9, "Ninde");
System.out.println(map);
s = map.keySet();
System.out.println(s);
}
}
输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Ninde}
[1, 3, 5, 7, 9]
参考:
甲骨文文档