位置:首页 > Java技术 > Java.util包 > java.util.Vector.removeAll()方法实例

java.util.Vector.removeAll()方法实例

removeAll(Collection<?> c) 用于去除该矢量的所有中所包含的指定集合的元素。

声明

以下是java.util.Vector.removeAll()方法的声明

public boolean removeAll(Collection<?> c)

参数

  • c--这是元素的集合,准备从此Vector中删除

返回值

如果此向量改变调用的结果,方法调用返回true。

异常

  • NullPointerException--如果指定集合为null时,抛出此异常。

例子

下面的例子显示java.util.Vector.removeAll()方法的使用。

package com.yiibai;

import java.util.Vector;

public class VectorDemo {
   public static void main(String[] args) {
      // create an empty Vector vec with an initial capacity of 4      
      Vector vec = new Vector(4);

      // use add() method to add elements in the vector
      vec.add(4);
      vec.add(3);
      vec.add(2);
      vec.add(1);

      // let us print all the elements available in vector
      System.out.println("Added numbers are :- "); 
      for (Integer number : vec) {         
         System.out.println("Number = " + number);
      }
      System.out.println("Size of the vector: "+vec.size());
      
      // let us remove all the elements
      System.out.println("Removing all the elements"); 
      vec.removeAll(vec);
      System.out.println("Size of the vector: "+vec.size());       
   }     
}

现在编译和运行上面的代码示例,将产生以下结果。

Added numbers are :- 
Number = 4
Number = 3
Number = 2
Number = 1
Size of the vector: 4
Removing all the elements
Size of the vector: 0