當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java LinkedHashSet contains()用法及代碼示例


Java.util.LinkedHashSet.contains()方法用於檢查LinkedHashSet中是否存在特定元素。因此,本質上,它用於檢查Set是否包含任何特定元素。

用法:

Hash_Set.contains(Object element)

參數:參數element 的類型為LinkedHashSet。無論是否存在於集合中,這都是需要測試的元素。


返回值:如果元素存在於集合中,則該方法返回true,否則返回False。

以下示例程序旨在說明Java.util.LinkedHashSet.contains()方法:

// Java code to illustrate LinkedHashSet.contains() method 
import java.io.*; 
import java.util.LinkedHashSet; 
  
public class LinkedHashSetDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty LinkedHashSet 
        LinkedHashSet<String> set = new LinkedHashSet<String>(); 
  
        // Using add() method to add elements into the Set 
        set.add("Welcome"); 
        set.add("To"); 
        set.add("Geeks"); 
        set.add("4"); 
        set.add("Geeks"); 
  
        // Displaying the LinkedHashSet 
        System.out.println("LinkedHashSet: " + set); 
  
        // Check for "Geeks" in the set 
        System.out.println("Does the Set contains 'Geeks'? " + set.contains("Geeks")); 
  
        // Check for "4" in the set 
        System.out.println("Does the Set contains '4'? " + set.contains("4")); 
  
        // Check if the Set contains "No" 
        System.out.println("Does the Set contains 'No'? " + set.contains("No")); 
    } 
}
輸出:
LinkedHashSet: [Welcome, To, Geeks, 4]
Does the Set contains 'Geeks'? true
Does the Set contains '4'? true
Does the Set contains 'No'? false


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 LinkedHashSet contains() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。