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


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


Java AbstractSet的contains()方法用於檢查集合中是否存在元素。它使用元素作為參數,如果元素存在於集合中,則返回True。

用法:

public boolean contains(Object element)

參數:參數element 是設置的類型。此參數表示需要在集合中檢查其出現的元素。


返回值:該方法返回一個布爾值。如果元素存在於集合中,則返回True;否則返回False。

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

示例1:

// Java code to illustrate 
// AbstractSet.contains() 
  
import java.util.*; 
  
public class GFG { 
    public static void main(String args[]) 
    { 
  
        // Creating an empty set 
        AbstractSet<String> 
            abs = new TreeSet<String>(); 
  
        // Use add() method to add 
        // elements in the set 
        abs.add("Geeks"); 
        abs.add("for"); 
        abs.add("Geeks"); 
        abs.add("10"); 
        abs.add("20"); 
  
        // Displaying the set 
        System.out.println("AbstractSet: "
                           + abs); 
  
        // Check if the set contains "Hello" 
        System.out.println("\nDoes the set"
                           + " contains 'Hello': "
                           + abs.contains("Hello")); 
  
        // Check if the set contains "20" 
        System.out.println("Does the set"
                           + " contains '20': "
                           + abs.contains("20")); 
  
        // Check if the set contains "Geeks" 
        System.out.println("Does the set"
                           + " contains 'Geeks': "
                           + abs.contains("Geeks")); 
    } 
}
輸出:
AbstractSet: [10, 20, Geeks, for]

Does the set contains 'Hello': false
Does the set contains '20': true
Does the set contains 'Geeks': true

示例2:

// Java code to illustrate 
// AbstractSet.contains() 
  
import java.util.*; 
  
public class GFG { 
    public static void main(String args[]) 
    { 
  
        // Creating an empty set 
        AbstractSet<Integer> 
            abs = new TreeSet<Integer>(); 
  
        // Use add() method to add 
        // elements in the set 
        abs.add(10); 
        abs.add(20); 
        abs.add(30); 
        abs.add(40); 
        abs.add(50); 
  
        // Displaying the set 
        System.out.println("AbstractSet:"
                           + abs); 
  
        // Check if the set contains 10 
        System.out.println("\nDoes the set "
                           + "contains '10': "
                           + abs.contains(10)); 
  
        // Check if the set contains 50 
        System.out.println("\nDoes the set"
                           + " contains '50': "
                           + abs.contains(50)); 
  
        // Check if the set contains 100 
        System.out.println("Does the set"
                           + " contains '100': "
                           + abs.contains(100)); 
    } 
}
輸出:
AbstractSet:[10, 20, 30, 40, 50]

Does the set contains '10': true

Does the set contains '50': true
Does the set contains '100': false


相關用法


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