El método containsKey() de java.util.concurrent.ConcurrentSkipListMap es una función integrada en Java que devuelve un valor booleano verdadero si el elemento especificado está presente en este mapa; de lo contrario, devuelve falso.
Sintaxis:
public boolean containsKey(Object ob)
Parámetro: La función acepta un solo parámetro obligatorio ob que especifica la clave cuya presencia en este mapa se va a probar.
Valor de retorno: la función devuelve verdadero si este mapa contiene una asignación para la clave especificada.
Los siguientes programas ilustran el método anterior:
Programa 1:
// Java Program Demonstrate containsKey() // 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 to this map for (int i = 1; i <= 5; i++) mpp.put(i, i); // Checks if 9 is present in the map if (mpp.containsKey(9)) System.out.println("9 is present" + " in the mpp."); else System.out.println("9 is not present" + " in the mpp."); } }
Programa 2:
// Java Program Demonstrate containsKey() // 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 to this map for (int i = 1; i <= 5; i++) mpp.put(i, i); // Checks if 4 is present in the map if (mpp.containsKey(4)) System.out.println("4 is present" + " in the mpp."); else System.out.println("4 is not present" + " in the mpp."); } }
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