Java中HashMap containsValue()方法
java.util.HashMap.containsValue()方法用于检查HashMap中是否有单个或多个键映射了特定的值。它以值为参数,并且如果该值由地图中的任何键映射,则返回True。
语法:
Hash_Map.containsValue(Object Value)
参数: 该方法只取一个参数Value,类型为Object,并引用其映射应由地图内的任何键进行检查的值。
返回值: 该方法返回布尔值true,如果检测到值的映射,否则返回false。
下面的程序用于说明java.util.HashMap.containsValue()方法的工作方式:
程序1: 将字符串值映射到整数键。
// Java code to illustrate the containsValue() method
import java.util.*;
public class Hash_Map_Demo {
public static void main(String[] args)
{
// 创建一个空的HashMap
HashMap<Integer, String> hash_map = new HashMap<Integer, String>();
// 将字符串值映射到整数键
hash_map.put(10, "Geeks");
hash_map.put(15, "4");
hash_map.put(20, "Geeks");
hash_map.put(25, "Welcomes");
hash_map.put(30, "You");
// 显示HashMap
System.out.println("Initial Mappings are: " + hash_map);
// 检查值“Geeks”
System.out.println("Is the value 'Geeks' present? " +
hash_map.containsValue("Geeks"));
// 检查值“World”
System.out.println("Is the value 'World' present? " +
hash_map.containsValue("World"));
}
}
Initial Mappings are: {20=Geeks, 25=Welcomes, 10=Geeks, 30=You, 15=4}
Is the value 'Geeks' present? true
Is the value 'World' present? false
程序2: 将整数值映射到字符串键。
// Java code to illustrate the containsValue() method
import java.util.*;
public class Hash_Map_Demo {
public static void main(String[] args)
{
// 创建一个空的HashMap
HashMap<String, Integer> hash_map = new HashMap<String, Integer>();
// 将int值映射到字符串键
hash_map.put("Geeks", 10);
hash_map.put("4", 15);
hash_map.put("Geeks", 20);
hash_map.put("Welcomes", 25);
hash_map.put("You", 30);
// 显示HashMap
System.out.println("Initial Mappings are: " + hash_map);
// 检查值“10”
System.out.println("Is the value '10' present? " +
hash_map.containsValue(10));
// 检查值“30”
System.out.println("Is the value '30' present? " +
hash_map.containsValue(30));
// 检查值“40”
System.out.println("Is the value '40' present? " +
hash_map.containsValue(40));
}
}
Initial Mappings are: {4=15, Geeks=20, You=30, Welcomes=25}
Is the value '10' present? false
Is the value '30' present? true
Is the value '40' present? false
时间复杂度: O(n)
注意: 可以使用任何类型的映射来执行相同的操作,不同数据类型的变化和组合。
极客教程