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


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


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

用法:

boolean contains(Object element)

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


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

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

// Java code to illustrate Set.contains() method 
import java.io.*; 
import java.util.*; 
  
public class HashSetDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Set 
        Set<String> set = new HashSet<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 Set 
        System.out.println("Set: " + 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")); 
    } 
}
輸出:
Set: [4, Geeks, Welcome, To]
Does the Set contains 'Geeks'? true
Does the Set contains '4'? true
Does the Set contains 'No'? false

參考: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#contains(java.lang.Object)



相關用法


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