📌  相关文章
📜  Java中的 Vector containsAll() 方法

📅  最后修改于: 2022-05-13 01:55:31.169000             🧑  作者: Mango

Java中的 Vector containsAll() 方法

Java.util.vector.containsAll()方法用于检查此 Vector 是否包含指定 Collection 中的所有元素。所以基本上它用于检查向量是否包含一组元素。

句法:

Vector.containsAll(Collection col)

参数:该方法接受一个向量类型的强制参数col 。这是需要检查其元素是否存在于向量中的集合。

返回值:如果集合col中的所有元素都存在于向量中,则该方法返回True ,否则返回False

异常:如果指定的集合为 NULL,则该方法抛出NullPointerException

下面的程序说明了Java.util.Vector.containsAll() 方法:

方案一:

// Java code to illustrate containsAll()
import java.util.*;
  
public class VectorDemo {
    public static void main(String args[])
    {
        // Creating an empty Vector
        Vector vec_tor = new Vector();
  
        // 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 colvec_tor = new Vector();
  
        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 colvec_tor2 = new Vector();
  
        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

方案二:

// Java code to illustrate contains()
import java.util.*;
  
public class VectorDemo {
    public static void main(String args[])
    {
        // Creating an empty Vector
        Vector vec_tor = new Vector();
  
        // 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 colvec_tor = new Vector();
  
        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 colvec_tor2 = new Vector();
  
        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