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


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


java.util.vector.containsAll()方法用於檢查此Vector是否包含指定Collection中的所有元素。因此,本質上,它用於檢查向量是否包含一組元素。

用法:

Vector.containsAll(Collection col)

參數:此方法接受矢量類型的強製性參數col。這是一個集合,需要檢查其元素是否在向量中。


返回值:如果集合col中的所有元素都存在於向量中,則該方法返回True,否則返回False。

異常:如果指定的集合為NULL,則該方法引發NullPointerException。

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

示例1:

// Java code to illustrate containsAll() 
import java.util.*; 
  
public class VectorDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Vector 
        Vector<String> vec_tor = new Vector<String>(); 
  
        // Use add() method to add elements into the Vector 
        vec_tor.add("Welcome"); 
        vec_tor.add("To"); 
        vec_tor.add("Geeks"); 
        vec_tor.add("4"); 
        vec_tor.add("Geeks"); 
  
        // Displaying the Vector 
        System.out.println("Vector: " + vec_tor); 
  
        // Creating another empty Vector 
        Vector<String> colvec_tor = new Vector<String>(); 
  
        colvec_tor.add("Geeks"); 
        colvec_tor.add("4"); 
        colvec_tor.add("Geeks"); 
  
        System.out.println("Are all the contents equal? " + vec_tor.containsAll(colvec_tor)); 
  
        // Creating another empty Vector 
        Vector<String> colvec_tor2 = new Vector<String>(); 
  
        colvec_tor2.add("Hello"); 
        colvec_tor2.add("Geeks"); 
  
        System.out.println("Are all the contents equal? " + vec_tor.containsAll(colvec_tor2)); 
    } 
}
輸出:
Vector: [Welcome, To, Geeks, 4, Geeks]
Are all the contents equal? true
Are all the contents equal? false

示例2:

// Java code to illustrate contains() 
import java.util.*; 
  
public class VectorDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Vector 
        Vector<Integer> vec_tor = new Vector<Integer>(); 
  
        // Use add() method to add elements into the Vector 
        vec_tor.add(10); 
        vec_tor.add(15); 
        vec_tor.add(30); 
        vec_tor.add(20); 
        vec_tor.add(5); 
  
        // Displaying the Vector 
        System.out.println("Vector: " + vec_tor); 
  
        // Displaying the Vector 
        System.out.println("Vector: " + vec_tor); 
  
        // Creating another empty Vector 
        Vector<Integer> colvec_tor = new Vector<Integer>(); 
  
        colvec_tor.add(20); 
        colvec_tor.add(25); 
        colvec_tor.add(30); 
  
        System.out.println("Are all the contents equal? " + vec_tor.containsAll(colvec_tor)); 
  
        // Creating another empty Vector 
        Vector<Integer> colvec_tor2 = new Vector<Integer>(); 
  
        colvec_tor2.add(10); 
        colvec_tor2.add(20); 
  
        System.out.println("Are all the contents equal? " + vec_tor.containsAll(colvec_tor2)); 
    } 
}
輸出:
Vector: [10, 15, 30, 20, 5]
Vector: [10, 15, 30, 20, 5]
Are all the contents equal? false
Are all the contents equal? true


相關用法


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