El método Java.util.Vector .set() se usa para reemplazar cualquier elemento particular en el vector, creado usando la clase Vector, con otro elemento.
Sintaxis:
Vector.set(int index, Object element)
Parámetros: esta función acepta dos parámetros obligatorios, como se muestra en la sintaxis anterior y se describe a continuación.
- índice : Este es de tipo entero y se refiere a la posición del elemento que se va a reemplazar del vector.
- element : Es el nuevo elemento por el cual se reemplazará el elemento existente y es del mismo tipo de objeto que el vector.
Valor devuelto: el método devuelve el valor anterior del vector que se reemplaza con el nuevo valor.
Los siguientes programas ilustran el método Java.util.Vector.set():
Programa 1:
// Java code to illustrate set() 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"); // Displaying the Vector System.out.println("Vector: " + vec_tor); // Using set() method to replace Geeks with GFG System.out.println("The Object that is replaced is: " + vec_tor.set(2, "GFG")); // Using set() method to replace 20 with 50 System.out.println("The Object that is replaced is: " + vec_tor.set(4, "50")); // Displaying the modified vector System.out.println("The new Vector is:" + vec_tor); } }
Producción:
Vector: [Geeks, for, Geeks, 10, 20] The Object that is replaced is: Geeks The Object that is replaced is: 20 The new Vector is:[Geeks, for, GFG, 10, 50]
Programa 2:
// Java code to illustrate set() 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(12); vec_tor.add(23); vec_tor.add(22); vec_tor.add(10); vec_tor.add(20); // Displaying the Vector System.out.println("Vector: " + vec_tor); // Using set() method to replace 12 with 21 System.out.println("The Object that is replaced is: " + vec_tor.set(0, 21)); // Using set() method to replace 20 with 50 System.out.println("The Object that is replaced is: " + vec_tor.set(4, 50)); // Displaying the modified vector System.out.println("The new Vector is:" + vec_tor); } }
Producción:
Vector: [12, 23, 22, 10, 20] The Object that is replaced is: 12 The Object that is replaced is: 20 The new Vector is:[21, 23, 22, 10, 50]
Publicación traducida automáticamente
Artículo escrito por kundankumarjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA