La clase Vector implementa una array creciente de objetos. Está disponible en el paquete java.util. Implementa la interfaz List. La interfaz de enumeración define los métodos mediante los cuales puede recorrer los elementos de una colección de objetos. Ahora para agregar elementos
Sintaxis de vectores:
clase pública Vector<E> extiende AbstractList<E> implementa List<E>, RandomAccess, Cloneable, Serializable
java.util.Enumeration Stack Vector HashTable ,
Puede usar el método Java.util.Vector .addElement() 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 la clase Vector.
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 ve c tor.
Valor devuelto: este es un método de tipo vacío y no devuelve ningún valor.
Ejemplo 1:
Java
// Java Program to Iterate Vector using Enumeration // Importing Enumeration class import java.util.Enumeration; // Importing vector class import java.util.Vector; public class GFG { // Main driver method public static void main(String a[]) { // Creating a new vector Vector<String> v = new Vector<String>(); // Adding elements to the end v.add("Welcome"); v.add("To"); v.add("Geeks for"); v.add("Geeks"); // Creating an object of enum Enumeration<String> en = v.elements(); while (en.hasMoreElements()) { // Print the elements using enum object // of the elements added in the vector System.out.println(en.nextElement()); } } }
Welcome To Geeks for Geeks
Ejemplo 2:
Java
// Java Program to Iterate Vector using Enumeration // Importing Enumeration class import java.util.Enumeration; // Importing Vector class import java.util.Vector; public class GFG { // Main driver method public static void main(String a[]) { // Creating a vector object Vector<Integer> v = new Vector<Integer>(); // Adding elements to the end v.add(1); v.add(2); v.add(3); v.add(4); // Creating an enum object Enumeration<Integer> en = v.elements(); while (en.hasMoreElements()) { // Displaying elements of vector class // calling enum object System.out.println(en.nextElement()); } } }
1 2 3 4
Publicación traducida automáticamente
Artículo escrito por sravankumar8128 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA