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

使用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”-

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

以上是 检查Java LinkedHashSet中是否存在特定元素 的全部内容, 来源链接: utcz.com/z/322493.html

回到顶部