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

java 8object oriented programmingprogramming更新于 2024/10/21 16:11:00

使用 contains() 方法检查 LinkedHashSet 中是否存在特定元素。

首先创建一个 LinkedHashSet 并添加一些元素 −

LinkedHashSet<String> l = new LinkedHashSet<String>();
l.add(new String("1"));
l.add(new String("2"));
l.add(new String("3"));
l.add(new String("4"));
l.add(new String("5"));
l.add(new String("6"));
l.add(new String("7"));

现在,检查它是否包含元素"5"或不包含"minus"

l.contains("5")

以下是检查 LinkedHashSet 中是否存在特定元素的示例 −

示例

import java.util.*;
public class Demo {
   public static void main(String[] args) {
      LinkedHashSet<String> l = new LinkedHashSet<String>();
      l.add(new String("1"));
      l.add(new String("2"));
      l.add(new String("3"));
      l.add(new String("4"));
      l.add(new String("5"));
      l.add(new String("6"));
      l.add(new String("7"));
      System.out.println("LinkedHashSet elements...");
      System.out.println(l);
      System.out.println("Does 5 exist in the LinkedHashSet elements? "+l.contains("5"));
   }
}

输出

LinkedHashSet elements...
[1, 2, 3, 4, 5, 6, 7]
Does 5 exist in the LinkedHashSet elements? True

相关文章