El método Java.util.Vector .addElement() se usa para agregar un elemento específico al final de este vector aumentando el tamaño del vector en 1. La funcionalidad de este método es similar a la del método add() de Clase de vectores.
Sintaxis:
boolean addElement(Object element)
Parámetros: esta función acepta un solo elemento de parámetro de tipo de objeto y se refiere al elemento especificado por este parámetro que se agrega al final del vector.
Valor devuelto: este es un método de tipo vacío y no devuelve ningún valor.
Los siguientes programas ilustran el funcionamiento del método java.util.Vector.add(Object element).
Programa 1:
Java
// 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]
Programa 2:
Java
// 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]
Publicación traducida automáticamente
Artículo escrito por kundankumarjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA