Java Vector removeAll()方法

Java Vector removeAll()方法

java.util.vector .removeAll(Collection col)方法用于从向量中删除指定集合中的所有元素。

语法

Vector.removeAll(Collection col)

参数: 该方法接受一个强制参数col,它是一个集合,其元素将被从向量中删除。

返回值: 如果向量因操作而被改变,该方法返回 true ,否则返回 False。

异常: 如果指定的集合为空,该方法会抛出NullPointerException。

下面的程序说明了Java.util.Vector.removeAll(Collection col)方法。

程序1 :

// Java code to illustrate removeAll()
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 in the Vector
        vec_tor.add("Geeks");
        vec_tor.add("for");
        vec_tor.add("Geeks");
        vec_tor.add("10");
        vec_tor.add("20");
  
        // Output the Vector
        System.out.println("Vector: " + vec_tor);
  
        // Creating an empty Vector
        Vector<String> colvec_tor = new Vector<String>();
  
        // Use add() method to add elements in the Vector
        colvec_tor.add("Geeks");
        colvec_tor.add("for");
        colvec_tor.add("Geeks");
  
        // Remove the head using remove()
        boolean changed = vec_tor.removeAll(colvec_tor);
  
        // Print the result
        if (changed)
            System.out.println("Collection removed");
        else
            System.out.println("Collection not removed");
  
        // Print the final Vector
        System.out.println("Final Vector: " + vec_tor);
    }
}

输出:

Vector: [Geeks, for, Geeks, 10, 20]
Collection removed
Final Vector: [10, 20]

程序2

// Java code to illustrate removeAll()
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 in the Vector
        vec_tor.add(1);
        vec_tor.add(2);
        vec_tor.add(3);
        vec_tor.add(10);
        vec_tor.add(20);
  
        // Output the Vector
        System.out.println("Vector: " + vec_tor);
  
        // Creating an empty Vector
        Vector<Integer> colvec_tor = new Vector<Integer>();
  
        // Use add() method to add elements in the Vector
        colvec_tor.add(30);
        colvec_tor.add(40);
        colvec_tor.add(50);
  
        // Remove the head using remove()
        boolean changed = vec_tor.removeAll(colvec_tor);
  
        // Print the result
        if (changed)
            System.out.println("Collection removed");
        else
            System.out.println("Collection not removed");
  
        // Print the final Vector
        System.out.println("Final Vector: " + vec_tor);
    }
}

输出:

Vector: [1, 2, 3, 10, 20]
Collection not removed
Final Vector: [1, 2, 3, 10, 20]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程