El método set() de la clase java.util.AbstractList se usa para reemplazar cualquier elemento particular en la lista abstracta creada usando la clase AbstractList con otro elemento. Esto se puede hacer especificando la posición del elemento a reemplazar y el nuevo elemento en el parámetro del método set().
Sintaxis:
AbstractList.set(int index, Object element)
Parámetros: Esta función acepta dos parámetros como se describe a continuación:
- índice : es de tipo entero y se refiere a la posición del elemento que se va a reemplazar de la lista abstracta.
- element : Es el nuevo elemento por el cual se reemplazará el elemento existente y es del mismo tipo de objeto que la lista abstracta.
Valor devuelto: el método devuelve el valor anterior de la lista abstracta que se reemplaza con el nuevo valor.
El siguiente programa ilustra el método AbstractList.set():
// Java code to illustrate set() import java.util.*; import java.util.LinkedList; public class AbstractListDemo { public static void main(String args[]) { // Creating an empty AbstractList AbstractList<String> list = new LinkedList<String>(); // Use add() method to add elements in the list list.add("Geeks"); list.add("for"); list.add("Geeks"); list.add("10"); list.add("20"); // Displaying the AbstractList System.out.println("AbstractList:" + list); // Using set() method to replace Geeks with GFG System.out.println("The Object that is replaced is: " + list.set(2, "GFG")); // Using set() method to replace 20 with 50 System.out.println("The Object that is replaced is: " + list.set(4, "50")); // Displaying the modified AbstractList System.out.println("The new AbstractList is:" + list); } }
Producción:
AbstractList:[Geeks, for, Geeks, 10, 20] The Object that is replaced is: Geeks The Object that is replaced is: 20 The new AbstractList is:[Geeks, for, GFG, 10, 50]
Programa 2:
// Java code to illustrate set() import java.util.*; public class LinkedListDemo { public static void main(String args[]) { // Creating an empty AbstractList AbstractList<Integer> list = new LinkedList<Integer>(); // Use add() method to add elements in the list list.add(10); list.add(20); list.add(30); list.add(40); list.add(50); // Displaying the AbstractList System.out.println("AbstractList:" + list); // Using set() method to replace 10 with 100 System.out.println("The Object that is replaced is: " + list.set(0, 100)); // Using set() method to replace 20 with 200 System.out.println("The Object that is replaced is: " + list.set(1, 200)); // Displaying the modified AbstractList System.out.println("The new AbstractList is:" + list); } }
Producción:
AbstractList:[10, 20, 30, 40, 50] The Object that is replaced is: 10 The Object that is replaced is: 20 The new AbstractList is:[100, 200, 30, 40, 50]
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA