當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Vector addElement()用法及代碼示例


通過將Vector的大小增加1,使用Java.util.Vector.addElement()方法將指定元素附加到此向量的末尾。此方法的函數類似於Vector類的add()方法的函數。

用法:

boolean addElement(Object element)

參數:此函數接受對象類型的單個參數element ,表示此參數指定的元素附加到矢量的末尾。


返回值:這是一個空類型方法,不返回任何值。

下麵的程序演示了java.util.Vector.add(Object element)方法的用法。

示例1:

// Java code to illustrate boolean addElement() 
import java.util.*; 
  
public class GFG { 
    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.addElement("Last"); 
        vec_tor.addElement("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]

示例2:

// Java code to illustrate boolean addElement() 
import java.util.*; 
  
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(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.addElement(50); 
        vec_tor.addElement(100); 
  
        // Printing the new vector 
        System.out.println("The new Vector is: " + vec_tor); 
    } 
}
輸出:
The vector is: [1, 2, 3, 10, 20]
The new Vector is: [1, 2, 3, 10, 20, 50, 100]


相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 Vector addElement() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。