java.util.Vector.retainAll() java.util.Vector.removeRange() java.util.Vector.set() 描述 所述retainAll(Collection<?> c)中的方法被用来仅保留在此向量中包含在指定Collection中的元素。换句话说,从此Vector中删除未包含在指定Collection中的所有元素。 声明 以下是java.util.Vector.retainAll()方法的声明 public boolean retainAll(Collection<?> c) 参数 c - 这是要在此Vector中保留的元素集合。 返回值 如果由于调用而更改此Vector,则方法调用返回true。 异常 NullPointerException - 如果指定的collection为null,则抛出此异常。 实例 以下示例显示了java.util.Vector.retainAll()方法的用法。 package com.tutorialspoint; import java.util.Vector; public class VectorDemo { public static void main(String[] args) { // create an empty Vector vec with an initial capacity of 7 Vector<Integer> vec = new Vector<Integer>(7); Vector<Integer> vecretain = new Vector<Integer>(4); // use add() method to add elements in the vector vec.add(1); vec.add(2); vec.add(3); vec.add(4); vec.add(5); vec.add(6); vec.add(7); // this elements will be retained vecretain.add(5); vecretain.add(3); vecretain.add(2); System.out.println("Calling retainAll()"); vec.retainAll(vecretain); // let us print all the elements available in vector System.out.println("Numbers after removal :- "); for (Integer number : vec) { System.out.println("Number = " + number); } } } 让我们编译并运行上面的程序,这将产生以下结果。 Calling retainAll() Numbers after removal :- Number = 2 Number = 3 Number = 5 java.util.Vector.removeRange() java.util.Vector.set()