El método clear() de java.util.concurrent.ConcurrentSkipListMap es una función integrada en Java que elimina todas las asignaciones de este mapa. Esto significa que se eliminan todos los elementos del mapa y se devuelve un mapa vacío.
Sintaxis:
public void clear()
Parámetro: La función no acepta ningún parámetro.
Valor de retorno: la función elimina todas las asignaciones de este mapa.
Los siguientes programas ilustran el método anterior:
Programa 1:
// Java Program Demonstrate clear() // method of ConcurrentSkipListMap import java.util.concurrent.*; class GFG { public static void main(String[] args) { // Initializing the map ConcurrentSkipListMap<Integer, Integer> mpp = new ConcurrentSkipListMap<Integer, Integer>(); // adding elements in map for (int i = 1; i <= 5; i++) mpp.put(i, i); // print original map System.out.println("map elements are: " + mpp); mpp.clear(); // after clear() operation System.out.println("after clear the map is: " + mpp); } }
Producción:
map elements are: {1=1, 2=2, 3=3, 4=4, 5=5} after clear the map is: {}
Programa 2:
// Java Program Demonstrate clear() // method of ConcurrentSkipListMap import java.util.concurrent.*; class GFG { public static void main(String[] args) { // Initializing the map ConcurrentSkipListMap<Integer, Integer> mpp = new ConcurrentSkipListMap<Integer, Integer>(); // adding elements in map for (int i = 1; i <= 10; i++) mpp.put(i, i); // print original map System.out.println("map elements are: " + mpp); mpp.clear(); // after clear() operation System.out.println("after clear the map is: " + mpp); } }
Producción:
map elements are: {1=1, 2=2, 3=3, 4=4, 5=5, 6=6, 7=7, 8=8, 9=9, 10=10} after clear the map is: {}
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListMap.html#clear–
Publicación traducida automáticamente
Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA