📜  在Java中检查 LinkedHashSet 中是否存在元素

📅  最后修改于: 2022-05-13 01:54:56.101000             🧑  作者: Mango

在Java中检查 LinkedHashSet 中是否存在元素

Java.util.LinkedHashSet.contains() 方法用于检查特定元素是否存在于 LinkedHashSet 中。所以基本上它用于检查 Set 是否包含任何特定元素。如果在 LinkedHashSet 对象中找到指定的元素,则包含 LinkedHashSet 类的方法返回 true。

例子:

Given List: [1, 2, 3, 4]

Input : FirstSearch = 1, SecondSearch = 6
Output: True False

句法:

Hash_Set.contains(Object element)

返回类型:如果在 中找到元素,则返回 true,否则返回 false。

参数:参数元素的类型为 LinkedHashSet。这是需要测试的元素是否存在于集合中。

例子:

Java
// Checking if element exists in LinkedHashSet in Java
import java.util.LinkedHashSet;
public class LinkedHashSetContainsExample {
  
    public static void main(String[] args)
    {
  
        LinkedHashSet lhSetColors
            = new LinkedHashSet();
  
        lhSetColors.add("red");
        lhSetColors.add("green");
        lhSetColors.add("blue");
  
        /*
         * To check if the LinkedHashSet contains the
         * element, use the contains method.
         */
  
        // this will return true as the "red" element exists
        System.out.println(lhSetColors.contains("red"));
  
        // this will return true as the "white" element does
        // not exists
        System.out.println(lhSetColors.contains("white"));
    }
}


输出
true
false