public Object remove(int index) public void removeElementAt(int index)
Less than zero or beyond the end, both of which trigger the throwing of an ArrayIndexOutOfBoundsException)
import java.util.Vector;
public class MainClass { public static void main(String args[]) {
Vector v = new Vector(5); for (int i = 0; i < 10; i++) {
v.add(0,i);
}
System.out.println(v.capacity());
System.out.println(v);