java.util.vector.elementAt(int pos)方法用於從Vector獲取或檢索特定索引處的元素。
用法:
Vector.elementAt(int pos)
參數:此方法接受整數數據類型的強製參數pos,該參數指定要從Vector提取的元素的位置或索引。
返回值:該方法返回存在於參數pos指定位置的元素。
以下示例程序旨在說明Java.util.Vector.get()方法:
示例1:
// Java code to illustrate elementAt() method
import java.util.Vector;
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");
// Displaying the Vector
System.out.println("Vector: "
+ vec_tor);
// Fetching the specific element from the Vector
System.out.println("The element is: "
+ vec_tor.elementAt(3));
}
}
輸出:
Vector: [Geeks, for, Geeks, 10, 20] The element is: 10
示例2:
// Java code to illustrate elementAt() method
import java.util.Vector;
public class VectorDemo {
public static void main(String args[])
{
// Creating an empty Vector
Vector<Integer> vec_tor = new Vector<Integer>();
// Use add() method to add elements in the Vector
vec_tor.add(1);
vec_tor.add(2);
vec_tor.add(3);
vec_tor.add(4);
vec_tor.add(5);
// Displaying the Vector
System.out.println("Vector: " + vec_tor);
// Fetching the specific element from the Vector
System.out.println("The element is: "
+ vec_tor.elementAt(1));
}
}
輸出:
Vector: [1, 2, 3, 4, 5] The element is: 2
相關用法
- Java Stack elementAt()用法及代碼示例
- Java Vector set()用法及代碼示例
- Java Vector add()用法及代碼示例
- Java Vector contains()用法及代碼示例
- Java Vector get()用法及代碼示例
- Java Vector containsAll()用法及代碼示例
- Java Vector capacity()用法及代碼示例
- Java Vector removeIf()用法及代碼示例
- Java Vector copyInto()用法及代碼示例
- Java Vector indexOf()用法及代碼示例
- Java Vector trimToSize()用法及代碼示例
- Java Vector setSize()用法及代碼示例
- Java Vector ensureCapacity()用法及代碼示例
- Java Vector removeRange()用法及代碼示例
- Java Vector removeAllElements()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 Vector elementAt() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。