Método HashTable putIfAbsent() en Java con ejemplos

El método putIfAbsent(Key, value) de la clase Hashtable que permite asignar un valor a una clave dada si la clave dada no está asociada con un valor o asignada a nulo. Se devuelve un valor nulo si dicho conjunto de clave-valor ya está presente en HashMap.

Sintaxis:

public V putIfAbsent(K key, V value)

Parámetros: Este método acepta dos parámetros:

  • clave : especifica la clave a la que se asignará el valor especificado si la clave no está asociada con ningún valor.
  • valor : especifica el valor que se asignará a la clave especificada.

Devoluciones: este método devuelve el valor existente asignado a la clave y devuelve un valor nulo si no se ha asignado previamente ningún valor a la clave.

Excepción: este método arroja:

  • NullPointerException : cuando los parámetros especificados son nulos.

Los siguientes programas ilustran el método putIfAbsent(Clave, valor):

Programa 1:

// Java program to demonstrate
// putIfAbsent(key, value) method.
  
import java.util.*;
  
public class GFG {
  
    // Main method
    public static void main(String[] args)
    {
  
        // create a table and add some values
        Map<String, Integer>
            table = new Hashtable<>();
  
        table.put("Pen", 10);
        table.put("Book", 500);
        table.put("Clothes", 400);
        table.put("Mobile", 5000);
  
        // print map details
        System.out.println("hashTable: "
                           + table.toString());
  
        // Inserting non-existing key with value
        // using putIfAbsent method
        String retValue
            = String.valueOf(table
                                 .putIfAbsent("Booklet", 2500));
  
        // Print the returned value
        System.out.println("Returned value "
                           + "for Key 'Booklet' is: "
                           + retValue);
  
        // print new mapping
        System.out.println("hashTable: "
                           + table);
  
        // Inserting existing key with value
        // using putIfAbsent method
        retValue
            = String.valueOf(table
                                 .putIfAbsent("Book", 4500));
  
        // Print the returned value
        System.out.println("Returned value"
                           + " for key 'Book' is: "
                           + retValue);
  
        // print new mapping
        System.out.println("hashTable: "
                           + table);
    }
}
Producción:

hashTable: {Book=500, Mobile=5000, Pen=10, Clothes=400}
Returned value for Key 'Booklet' is: null
hashTable: {Book=500, Mobile=5000, Pen=10, Clothes=400, Booklet=2500}
Returned value for key 'Book' is: 500
hashTable: {Book=500, Mobile=5000, Pen=10, Clothes=400, Booklet=2500}

Programa 2: para mostrar NullPointerException

// Java program to demonstrate
// putIfAbsent(key, value) method.
  
import java.util.*;
  
public class GFG {
  
    // Main method
    public static void main(String[] args)
    {
  
        // create a table and add some values
        Map<Integer, String>
            table = new Hashtable<>();
  
        table.put(1, "100RS");
        table.put(2, "500RS");
        table.put(3, "1000RS");
  
        // print map details
        System.out.println("hashTable: "
                           + table.toString());
  
        try {
  
            table.putIfAbsent(null, "8");
        }
        catch (NullPointerException e) {
  
            System.out.println("Exception: " + e);
        }
    }
}
Producción:

hashTable: {3=1000RS, 2=500RS, 1=100RS}
Exception: java.lang.NullPointerException

Referencias: https://docs.oracle.com/javase/8/docs/api/java/util/Hashtable.html#putIfAbsent-KV-

Publicación traducida automáticamente

Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *