本文主要是介绍java中Contain、Containskey和containsValue三个方法的区别及作用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
contains()
作用:判断一个字符串中是否包含另外一个字符串
contains()示例代码:
public class Demo {public static void main(String[] args) {String str1="abcdefg";String str2="def";String str3="df";boolean res1 = str1.contains(str2);if (res1){System.out.println("1-包含");}else {System.out.println("1-不包含");}boolean res2 = str1.contains(str3);if (res2){System.out.println("2-包含");}else {System.out.println("2-不包含");}}
}
运行结果:
注意:判断一个字符串是不是在领一个字符串中包含着,前提条件是你所判断的字符串再另一个字符串中是紧挨着的例如: “abcdefgh”.contains(“def”) 该结果返回值为true, 如果“abcdefgh”.contains(“df”)此时返回结果是false
containsKey()
作用:主要用于判断map中是否包含指定的键名
在HashMap中经常用到containsKey()来判断键(key)是否存在。
HashMap中允许值对象(value)为null,并且没有个数限制,所以当get()方法的返回值为null时,可能有两种情况:一种是在HashMap中没有该键对象,另一种是该键对象没有映射任何值对象,即值对象为null。因此,在HashMap中不应该利用get()方法来判断是否存在某个键,而应该利用containsKey()方法来判断。
containsValue()
用法:主要用于判断map中是否包含指定的键值
containsKey()和containsValue()示例代码:
mport java.util.HashMap;
import java.util.Map;public class Demo {public static void main(String[] args) {Map<String, String> map = new HashMap<String, String>();map.put("book", "语文");map.put("food", "零食");boolean res1 = map.containsKey("book");if (res1) {System.out.println("1-存在键【book】");} else {System.out.println("1-不存在键【book】");}boolean res2 = map.containsKey("books");if (res2) {System.out.println("2-存在键【books】");} else {System.out.println("2-不存在键【books】");}boolean foods1 = map.containsValue("零食");if (foods1) {System.out.println("3-存在值【零食】");} else {System.out.println("3-不存在值【零食】");}boolean foods2 = map.containsValue("零食2");if (foods2) {System.out.println("4-存在值【零食2】");} else {System.out.println("4-不存在值【零食2】");}}
}
运行结果:
这篇关于java中Contain、Containskey和containsValue三个方法的区别及作用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!