檢查 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
廣告