El método java.util.concurrent.LinkedTransferQueue.remove() es una función integrada en Java que se utiliza para eliminar un elemento si está presente en esta cola.
Sintaxis:
LinkedTransferQueue.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 LinkedTransferQueue.remove():
Programa 1: El elemento a eliminar está presente en la cola.
// Java Program Demonstrate remove() // method of LinkedTransferQueue import java.util.concurrent.LinkedTransferQueue; class LinkedTransferQueueRemoveExample1 { public static void main(String[] args) { // Initializing the queue LinkedTransferQueue<Integer> queue = new LinkedTransferQueue<Integer>(); // Adding elements to this queue for (int i = 1; i <= 5; i++) queue.add(i); // Printing the elements of the queue System.out.println("The elements in the queue are:"); for (Integer i : queue) System.out.print(i + " "); // remove() method will remove the specified // element from the queue queue.remove(1); queue.remove(5); // Printing the elements of the queue System.out.println("\nRemaining elements in queue : "); for (Integer i : queue) System.out.print(i + " "); } }
The elements in the queue are: 1 2 3 4 5 Remaining elements in queue : 2 3 4
Programa 2: El elemento a eliminar no está presente en la cola.
// Java Program Demonstrate remove() // method of LinkedTransferQueue import java.util.concurrent.LinkedTransferQueue; class LinkedTransferQueueRemoveExample2 { public static void main(String[] args) { // Initializing the queue LinkedTransferQueue<Integer> queue = new LinkedTransferQueue<Integer>(); // Adding elements to this queue for (int i = 10; i <= 15; i++) queue.add(i); // Printing the elements of the queue System.out.println("The elements in the queue are:"); for (Integer i : queue) System.out.print(i + " "); // remove() method will remove the specified // element from the queue queue.remove(1); queue.remove(5); // Printing the elements of the queue System.out.println("\nRemaining elements in queue : "); for (Integer i : queue) System.out.print(i + " "); } }
The elements in the queue are: 10 11 12 13 14 15 Remaining elements in queue : 10 11 12 13 14 15
Referencia : https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/LinkedTransferQueue.html#remove(java.lang.Object)
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