java.util.Vector.retainAll()方法實例
retainAll(Collection<?> c) 方法用於僅保留此向量包含在指定Collection的元素。換言之,刪除這個向量的所有元素未包含在指定Collection。
聲明
以下是java.util.Vector.retainAll()方法的聲明
public boolean retainAll(Collection<?> c)
參數
-
c-- 這對於在此Vector保留元素的集合。
返回值
如果此向量改變為調用的結果,方法調用返回true。
異常
-
NullPointerException--如果指定集合為null時拋出此異常。
例子
下麵的例子顯示java.util.Vector.retainAll()方法的使用。
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 7 Vectorvec = new Vector (7); Vector vecretain = new Vector (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