Método BigInteger hashCode() en Java

El método java.math.BigInteger.hashCode() devuelve el código hash para este BigInteger. El código hash es siempre el mismo si el objeto no cambia.
Hashcode es un código único generado por la JVM en el momento de la creación del objeto. Podemos usar hashcode para realizar alguna operación en algoritmos relacionados con hash como hashtable , hashmap , etc. Podemos buscar un objeto con ese código único.

Sintaxis:

public int hashCode()

Devoluciones: el método devuelve un valor entero que representa el valor hashCode para este BigInteger.

Ejemplos:

Input: BigInteger1=32145
Output: 32145
Explanation: BigInteger1.hashCode()=32145.

Input: BigInteger1=7613721467324 
Output: -1255493552
Explanation: BigInteger1.hashCode()=-1255493552.

Ejemplo 1: Los siguientes programas ilustran el método hashCode() de la clase BigInteger

// Java program to demonstrate 
// hashCode() method of BigInteger
  
import java.math.BigInteger;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Creating 2 BigInteger objects
        BigInteger b1, b2;
  
        b1 = new BigInteger("32145");
        b2 = new BigInteger("7613721467324");
  
        // apply hashCode() method
        int hashCodeOfb1 = b1.hashCode();
        int hashCodeOfb2 = b2.hashCode();
  
        // print hashCode
        System.out.println("hashCode of "
                           + b1 + " : " + hashCodeOfb1);
        System.out.println("hashCode of "
                           + b2 + " : " + hashCodeOfb2);
    }
}
Producción:

hashCode of 32145 : 32145
hashCode of 7613721467324 : -1255493552

Ejemplo 2: cuando ambos bigInteger tienen el mismo valor

// Java program to demonstrate 
// hashCode() method of BigInteger
  
import java.math.BigInteger;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Creating 2 BigInteger objects
        BigInteger b1, b2;
  
        b1 = new BigInteger("4326516236135");
        b2 = new BigInteger("4326516236135");
  
        // apply hashCode() method
        int hashCodeOfb1 = b1.hashCode();
        int hashCodeOfb2 = b2.hashCode();
  
        // print hashCode
        System.out.println("hashCode of "
                           + b1 + " : " + hashCodeOfb1);
        System.out.println("hashCode of "
                           + b2 + " : " + hashCodeOfb2);
    }
}
Producción:

hashCode of 4326516236135 : 1484200280
hashCode of 4326516236135 : 1484200280

Referencia:
BigInteger hashCode() Documentos

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 *