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

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      
      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 remove the 1st element
      System.out.println("Removed element: "+vec.remove(1));                  
   }     
}

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

Removed element: 3