Java中的List contains()方法及示例
在Java的List接口中,contains()方法用于检查指定元素是否存在于给定的列表中。
语法:
public boolean contains(Object obj)
obj-要搜索的元素
参数: 此方法接受单个参数 obj,即要在此列表中测试其是否存在。
返回值: 如果在列表中找到指定的元素,则返回true,否则返回false。
下面的程序说明了 List 中的 contains() 方法:
程序1: 演示了整数列表中 contains() 方法的工作方式。
// Java code to demonstrate the working of
// contains() method in List interface
import java.util.*;
class GFG {
public static void main(String[] args)
{
// creating an Empty Integer List
List<Integer> arr = new ArrayList<Integer>(4);
// using add() to initialize values
// [1, 2, 3, 4]
arr.add(1);
arr.add(2);
arr.add(3);
arr.add(4);
// use contains() to check if the element
// 2 exits or not
boolean ans = arr.contains(2);
if (ans)
System.out.println("The list contains 2");
else
System.out.println("The list does not contains 2");
// use contains() to check if the element
// 5 exits or not
ans = arr.contains(5);
if (ans)
System.out.println("The list contains 5");
else
System.out.println("The list does not contains 5");
}
}
列表包含2
列表不包含5
程序2: 演示了字符串列表中 contains() 方法的工作方式。
// Java code to demonstrate the working of
// contains() method in List of string
import java.util.*;
class GFG {
public static void main(String[] args)
{
// creating an Empty String List
List<String> arr = new ArrayList<String>(4);
// using add() to initialize values
// ["geeks", "for", "geeks"]
arr.add("geeks");
arr.add("for");
arr.add("geeks");
// use contains() to check if the element
// "geeks" exits or not
boolean ans = arr.contains("geeks");
if (ans)
System.out.println("The list contains geeks");
else
System.out.println("The list does not contains geeks");
// use contains() to check if the element
// "coding" exits or not
ans = arr.contains("coding");
if (ans)
System.out.println("The list contains coding");
else
System.out.println("The list does not contains coding");
}
}
列表包含 geeks
列表不包含 coding
实际应用: 在搜索操作中,我们可以检查给定元素是否存在于列表中或不在。
参考: https://docs.oracle.com/javase/7/docs/api/java/util/List.html#contains(java.lang.Object)
极客教程