共计 865 个字符,预计需要花费 3 分钟才能阅读完成。
containsKey() 方法是 Java 的 Map 接口中的一个方法,用于判断指定的键是否存在于 Map 中。它的方法签名如下:
boolean containsKey(Object key)
参数 key 是要判断的键对象。如果 Map 中包含指定的键,则返回 true;否则返回 false。
下面是一个使用 containsKey() 方法的示例:
import java.util.HashMap;
import java.util.Map;
public class Main {public static void main(String[] args) {Map map = new HashMap();
map.put("apple", 1);
map.put("banana", 2);
map.put("orange", 3);
// 判断键 "apple" 是否存在于 Map 中
if (map.containsKey("apple")) {System.out.println("键 \"apple\"存在于 Map 中");
} else {System.out.println("键 \"apple\"不存在于 Map 中");
}
// 判断键 "pear" 是否存在于 Map 中
if (map.containsKey("pear")) {System.out.println("键 \"pear\"存在于 Map 中");
} else {System.out.println("键 \"pear\"不存在于 Map 中");
}
}
}
输出结果为:
键 "apple" 存在于 Map 中
键 "pear" 不存在于 Map 中
在上面的示例中,我们创建了一个 HashMap 对象,并向其中添加了三个键值对。然后使用 containsKey() 方法来判断键 ”apple” 和 ”pear” 是否存在于 Map 中,并打印相应的结果。
需要注意的是,containsKey() 方法的参数类型需要与 Map 的键类型相匹配。在示例中,我们使用了 String 类型作为键,因此参数也是 String 类型。如果参数的类型与键的类型不匹配,编译器将会给出类型不匹配的错误。
丸趣 TV 网 – 提供最优质的资源集合!
正文完