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


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


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

用法:

boolean contains(Object element)

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


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

注意:SortedSet中的addAll()方法是從Java中的Set接口繼承的。

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

// Java code to illustrate 
// SortedSet.contains() method 
  
import java.io.*; 
import java.util.*; 
  
public class SortedSetDemo { 
    public static void main(String args[]) 
    { 
  
        // Creating an empty Set 
        SortedSet<String> set 
            = new TreeSet<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, To, Welcome]
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大神的英文原創作品 SortedSet contains() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。