Método SortedMap hashCode() en Java con ejemplos

El método hashCode() de la interfaz SortedMap en Java se usa para generar un código hash para el mapa dado que contiene claves y valores.

Sintaxis:

int hashCode()

Parámetros: Este método no tiene argumento.

Devoluciones: este método devuelve el valor hashCode para el mapa dado.

Nota : el método hashCode() en SortedMap se hereda de la interfaz Map en Java.

Los siguientes programas muestran la implementación del método int hashCode().

Programa 1:

// Java code to show the implementation of
// hashCode() method in SortedMap interface
  
import java.util.*;
  
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a SortedMap
        // of type TreeMap
        SortedMap<Integer, String> map
            = new TreeMap<>();
  
        map.put(1, "One");
        map.put(3, "Three");
        map.put(5, "Five");
        map.put(7, "Seven");
        map.put(9, "Ninde");
        System.out.println(map);
  
        int hash = map.hashCode();
  
        System.out.println(hash);
    }
}
Producción:

{1=One, 3=Three, 5=Five, 7=Seven, 9=Ninde}
238105666

Programa 2: a continuación se muestra el código para mostrar la implementación de hashCode().

// Java code to show the implementation of
// hashCode method in SortedMap interface
  
import java.util.*;
  
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a SortedMap
        // of type TreeMap
        SortedMap<String, String> map
            = new TreeMap<>();
  
        map.put("1", "One");
        map.put("3", "Three");
        map.put("5", "Five");
        map.put("7", "Seven");
        map.put("9", "Ninde");
        System.out.println(map);
  
        int hash = map.hashCode();
  
        System.out.println(hash);
    }
}
Producción:

{1=One, 3=Three, 5=Five, 7=Seven, 9=Ninde}
238105618

Referencia: Documentos de Oracle

Publicación traducida automáticamente

Artículo escrito por gopaldave 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 *