- boolean add(Object element):此方法將指定的元素附加到此向量的末尾。
用法:
boolean add(Object element)
參數:此函數接受單個參數element ,如上麵的語法所示。此參數指定的元素將附加到向量的末尾。
返回值:成功執行後,此方法返回True,否則返回False。
以下示例程序旨在說明java.util.Vector.add(Object element)方法的用法:
例:
// Java code to illustrate boolean add(Object element) 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 present vector System.out.println("The vector is:" + vec_tor); // Adding new elements to the end vec_tor.add("Last"); vec_tor.add("Element"); // Printing the new vector System.out.println("The new Vector is:" + vec_tor); } }
輸出:The vector is:[Geeks, for, Geeks, 10, 20] The new Vector is:[Geeks, for, Geeks, 10, 20, Last, Element]
- void add(int index, Object element):此方法在向量的指定索引處插入一個元素。它將當前位於該位置的元素(如果有)和任何後續元素右移(將通過添加一個來更改其索引)。
用法:
void add(int index, Object element)
參數:該方法接受兩個參數,如下所述。
- index:要插入指定元素的索引。
- element:需要插入的元素。
返回值:此方法不返回任何值。
異常:如果指定的索引超出向量的大小範圍,則此方法將引發IndexOutOfBoundsException。
以下示例程序旨在說明java.util.Vector.add(int index,Object element)方法的用法:
例:
// Java code to illustrate boolean add(Object element) 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 present vector System.out.println("The vector is:" + vec_tor); // Adding new elements to the end vec_tor.add(2, "Last"); vec_tor.add(4, "Element"); // Printing the new vector System.out.println("The new Vector is:" + vec_tor); } }
輸出:The vector is:[Geeks, for, Geeks, 10, 20] The new Vector is:[Geeks, for, Last, Geeks, Element, 10, 20]
相關用法
- Java Vector set()用法及代碼示例
- Java Vector contains()用法及代碼示例
- Java Vector get()用法及代碼示例
- Java Vector forEach()用法及代碼示例
- Java Vector subList()用法及代碼示例
- Java Vector containsAll()用法及代碼示例
- Java Vector copyInto()用法及代碼示例
- Java Vector indexOf()用法及代碼示例
- Java Vector capacity()用法及代碼示例
- Java Vector removeElementAt()用法及代碼示例
- Java Vector hashCode()用法及代碼示例
- Java Vector addElement()用法及代碼示例
- Java Vector remove()用法及代碼示例
- Java Vector insertElementAt()用法及代碼示例
- Java Vector removeAll()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 Vector add() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。