El método java.util.concurrent.ConcurrentLinkedDeque .clear() es un método incorporado en Java que elimina los elementos en Deque.
Sintaxis:
public void clear()
Parámetros: El método no acepta ningún parámetro.
Valor devuelto: la función no devuelve nada
Los siguientes programas ilustran el método ConcurrentLinkedDeque.clear() :
Programa 1 :
// Java Program to Demonstrate clear() // method of ConcurrentLinkedDeque import java.util.concurrent.*; class GFG { public static void main(String[] args) { // Creating an empty Deque ConcurrentLinkedDeque<String> cld = new ConcurrentLinkedDeque<String>(); // Add elements into the Deque cld.add("Welcome"); cld.add("To"); cld.add("Geeks"); cld.add("4"); cld.add("Geeks"); // Displaying the Deque System.out.println("ConcurrentLinkedDeque: " + cld); // Remove all elements of the Deque using clear() cld.clear(); // Displaying message System.out.println("\nConcurrentLinkedDeque cleared\n"); // Displaying the Deque System.out.println("ConcurrentLinkedDeque: " + cld); } }
Producción:
ConcurrentLinkedDeque: [Welcome, To, Geeks, 4, Geeks] ConcurrentLinkedDeque cleared ConcurrentLinkedDeque: []
Programa 2:
// Java Program to Demonstrate clear() // method of ConcurrentLinkedDeque import java.util.concurrent.*; class GFG { public static void main(String[] args) { // Creating an empty Deque ConcurrentLinkedDeque<Integer> cld = new ConcurrentLinkedDeque<Integer>(); // Add elements into the Deque cld.add(10); cld.add(20); cld.add(30); cld.add(40); cld.add(50); // Displaying the Deque System.out.println("ConcurrentLinkedDeque: " + cld); // Remove all elements of the Deque using clear() cld.clear(); // Displaying message System.out.println("\nConcurrentLinkedDeque cleared\n"); // Displaying the Deque System.out.println("ConcurrentLinkedDeque: " + cld); } }
Producción:
ConcurrentLinkedDeque: [10, 20, 30, 40, 50] ConcurrentLinkedDeque cleared ConcurrentLinkedDeque: []
Referencia: https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/ConcurrentLinkedDeque.html#clear–
Publicación traducida automáticamente
Artículo escrito por Aishwarya Jayashankar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA