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


Java AbstractCollection containsAll()用法及代碼示例


Java AbstractCollection 的 containsAll() 方法用於檢查兩個 Collection 是否包含相同的元素。它將一個集合作為參數,如果該集合的所有元素都存在於另一個集合中,則返回 True。

用法:

AbstractCollection.containsAll(Collection C)

參數:參數 C 是一個集合。該參數是指需要在該集合中檢查其元素出現的集合。

返回值:如果此集合包含其他集合的所有元素,則該方法返回 True,否則返回 False。

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



程序1:


// Java code to illustrate boolean containsAll()
  
import java.util.*;
  
class AbstractCollectionDemo {
    public static void main(String args[])
    {
  
        // Creating an empty Collection
        AbstractCollection<String>
            abs = new LinkedList<String>();
  
        // Use add() method to
        // add elements in the collection
        abs.add("Geeks");
        abs.add("for");
        abs.add("Geeks");
        abs.add("10");
        abs.add("20");
  
        // Creating another empty Collection
        AbstractCollection<String>
            abs2 = new LinkedList<String>();
  
        // Use add() method to
        // add elements in the collection
        abs2.add("Geeks");
        abs2.add("for");
        abs2.add("Geeks");
        abs2.add("10");
        abs2.add("20");
  
        // Check if the collection
        // contains same elements
        System.out.println("\nBoth the collections same:"
                           + abs.containsAll(abs2));
    }
}
輸出:
Both the collections same:true

程序2:


// Java code to illustrate boolean containsAll()
  
import java.util.*;
  
class AbstractCollectionDemo {
    public static void main(String args[])
    {
  
        // Creating an empty Collection
        AbstractCollection<String>
            abs = new LinkedList<String>();
  
        // Use add() method to
        // add elements in the collection
        abs.add("Geeks");
        abs.add("for");
        abs.add("Geeks");
  
        // Creating another empty Collection
        AbstractCollection<String>
            abs2 = new LinkedList<String>();
  
        // Use add() method to
        // add elements in the collection
        abs2.add("10");
        abs2.add("20");
  
        // Check if the collection
        // contains same elements
        System.out.println("\nBoth the collections same:"
                           + abs.containsAll(abs2));
    }
}
輸出:
Both the collections same:false




相關用法


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