Java中的向量removeElementAt()方法
Java.util.vector.removeElementAt(int index)方法用于从特定位置或索引的 Vector 中删除元素。在这个过程中,向量的大小会自动减少一个,而移除元素之后的所有其他元素都会向下移动一个位置。
句法:
Vector.removeElementAt(int index)
参数:此方法接受整数数据类型的强制参数索引,该索引指定要从向量中删除的元素的位置。
返回值:此方法具有void返回类型。这意味着它不返回任何东西。
下面的程序说明了Java.util.Vector.remove(int index) 方法:
// Java code to illustrate removeElementAt()
import java.util.*;
public class VectorDemo {
public static void main(String args[])
{
// Creating an empty Vector
Vector vec_tor = new Vector();
// Use add() method to add elements in the Vector
vec_tor.add("Geeks");
vec_tor.add("for");
vec_tor.add("Geeks");
vec_tor.add("10");
vec_tor.add("20");
// Output the Vector
System.out.println("Vector: " + vec_tor);
// Initial size
System.out.println("The initial size is: " + vec_tor.size());
// Remove the element at 3rd position
vec_tor.removeElementAt(2);
// Print the final Vector
System.out.println("Final Vector: " + vec_tor);
// Final size
System.out.println("The final size is: " + vec_tor.size());
}
}
输出:
Vector: [Geeks, for, Geeks, 10, 20]
The initial size is: 5
Final Vector: [Geeks, for, 10, 20]
The final size is: 4