El método java.util.concurrent.ConcurrentSkipListSet.remove() es una función integrada en Java que se usa para eliminar un elemento si está presente en este conjunto.
Sintaxis:
ConcurrentSkipListSet.remove(Object o)
Parámetros: La función acepta un único parámetro, es decir, el objeto a eliminar.
Valor devuelto: la función devuelve un valor booleano verdadero en la eliminación exitosa del objeto; de lo contrario, devuelve falso.
Los siguientes programas ilustran el método ConcurrentSkipListSet.remove():
Programa 1: El elemento a eliminar está presente en el conjunto.
// Java Program Demonstrate remove() // method of ConcurrentSkipListSet import java.util.concurrent.ConcurrentSkipListSet; class ConcurrentSkipListSetRemoveExample1 { public static void main(String[] args) { // Initializing the set ConcurrentSkipListSet<Integer> set = new ConcurrentSkipListSet<Integer>(); // Adding elements to this set for (int i = 1; i <= 5; i++) set.add(i); // Printing the elements of the set System.out.println("The elements in the set are:"); for (Integer i : set) System.out.print(i + " "); // remove() method will remove the specified // element from the set set.remove(1); set.remove(5); // Printing the elements of the set System.out.println("\nRemaining elements in set : "); for (Integer i : set) System.out.print(i + " "); } }
Producción:
The elements in the set are: 1 2 3 4 5 Remaining elements in set : 2 3 4
Programa 2: El elemento a eliminar no está presente en el conjunto.
// Java Program Demonstrate remove() // method of ConcurrentSkipListSet import java.util.concurrent.ConcurrentSkipListSet; class ConcurrentSkipListSetRemoveExample2 { public static void main(String[] args) { // Initializing the set ConcurrentSkipListSet<Integer> set = new ConcurrentSkipListSet<Integer>(); // Adding elements to this set for (int i = 10; i <= 15; i++) set.add(i); // Printing the elements of the set System.out.println("The elements in the set are:"); for (Integer i : set) System.out.print(i + " "); // remove() method will remove the specified // element from the set set.remove(1); set.remove(5); // Printing the elements of the set System.out.println("\nRemaining elements in set : "); for (Integer i : set) System.out.print(i + " "); } }
Producción:
The elements in the set are: 10 11 12 13 14 15 Remaining elements in set : 10 11 12 13 14 15
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA