java.util.Vector.remove()方法實例
remove(int index) 方法用於去除元素在此向量的指定位置。這將所有後續元素左移(減1的指數)。它返回Vector中被移除的元素。
聲明
以下是java.util.Vector.remove()方法的聲明
public E remove(int index)
參數
-
index--這是要刪除的元素的索引。
返回值
該方法調用返回被移除的元素。
異常
-
ArrayIndexOutOfBoundsException--如果索引超出範圍,則拋出該異常。
例子
下麵的例子顯示java.util.Vector.remove()方法的使用。
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 Vectorvec = 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 remove the 1st element System.out.println("Removed element: "+vec.remove(1)); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Removed element: 3