Java Vector elementAt() 方法



描述

Java Vector elementAt(int index) 方法用于获取向量中指定索引/位置处的组件。

声明

以下是 java.util.Vector.elementAt() 方法的声明

public Object elementAt(int index)

参数

index − 这是此向量的索引。

返回值

它返回指定索引处的组件。

异常

ArrayIndexOutOfBoundsException − 如果索引为负数或不小于此 Vector 对象的当前大小。

通过整数向量的索引获取元素示例

以下示例演示了 Java Vector elementAt() 方法的使用,用于获取此向量中特定位置/索引处的元素。我们创建了一个 Integer 向量,并使用 add() 方法向其中添加了一些元素。然后,我们使用 elementAt() 方法打印索引 1 处的元素。

package com.tutorialspoint;

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<Integer> 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 print the element at 1st position in the vector
      System.out.println("Element at 1st position: "+vec.elementAt(1));
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Element at 1st position : 3

通过字符串向量的索引获取元素示例

以下示例演示了 Java Vector elementAt() 方法的使用,用于获取此向量中特定位置/索引处的元素。我们创建了一个 String 向量,并使用 add() 方法向其中添加了一些元素。然后,我们使用 elementAt() 方法打印索引 1 处的元素。

package com.tutorialspoint;

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<String> vec = new Vector<>(4);

      // use add() method to add elements in the vector
      vec.add("D");
      vec.add("C");
      vec.add("B");
      vec.add("A");

      // let us print the element at 1st position in the vector
      System.out.println("Element at 1st position: "+vec.elementAt(1));
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Element at 1st position: C

通过对象向量的索引获取元素示例

以下示例演示了 Java Vector elementAt() 方法的使用,用于获取此向量中特定位置/索引处的元素。我们创建了一个 Integer 向量,并使用 add() 方法向其中添加了一些元素。然后,我们使用 elementAt() 方法打印索引 1 处的元素。

package com.tutorialspoint;

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<Student> vec = new Vector<>(4);

      // use add() method to add elements in the vector
      vec.add(new Student(1, "Julie"));
      vec.add(new Student(2, "Robert"));
      vec.add(new Student(3, "Adam"));
      vec.add(new Student(4, "Jane"));	  

      // let us print the element at 1st position in the vector
      System.out.println("Element at 1st position: "+vec.elementAt(1));
   }    
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
   
   @Override
   public boolean equals(Object obj) {
      Student s = (Student)obj;
      return this.rollNo == s.rollNo && this.name.equalsIgnoreCase(s.name);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Element at 1st position: [ 2, Robert ]
java_util_vector.htm
广告