Java Vector removeElementAt()方法

Java Vector removeElementAt()方法

java.util.vector .removeElementAt(int index)方法用于从一个向量的特定位置或索引中删除一个元素。在这个过程中,向量的大小会自动减少一个,并且在被删除的元素之后的所有其他元素会向下移动一个位置。

语法

Vector.removeElementAt(int index)

参数: 该方法接受一个整数数据类型的强制性参数index,它指定了要从Vector中删除的元素的位置。

返回值: 该方法的返回类型为 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<String> vec_tor = new Vector<String>();
  
        // 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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程