El método hashCode() es un método integrado de java.text.NumberFormat que devuelve un valor de código hash para este objeto de instancia determinado.
Sintaxis :
public int hashCode()
Parámetros : La función no acepta ningún parámetro.
Valor de retorno : la función devuelve el valor del código hash.
A continuación se muestra la implementación de la función anterior:
Programa 1:
// Java program to implement // the above function import java.text.NumberFormat; import java.util.Locale; import java.util.Currency; public class Main { public static void main(String[] args) throws Exception { // Get the instance for Locale US NumberFormat nF = NumberFormat .getInstance(Locale.US); // Prints the hash-code value System.out.println("The hash-code values is: " + nF.hashCode()); } }
Producción:
The hash-code values is: 423132
Programa 2:
// Java program to implement // the above function import java.text.NumberFormat; import java.util.Locale; import java.util.Currency; public class Main { public static void main(String[] args) throws Exception { // Get the instance for Locale US NumberFormat nF = NumberFormat .getInstance(Locale.US); // Prints the hash-code value System.out.println("The hash-code values is: " + nF.hashCode()); } }
Producción:
The hash-code values is: 423132
Referencia: https://docs.oracle.com/javase/10/docs/api/java/text/NumberFormat.html#hashCode()