El método hashCode() es un método integrado de la clase java.text.DecimalFomrat en Java y se usa para obtener un valor integral de hashCode para esta instancia de DecimalFormat.
Sintaxis :
public int hashCode()
Parámetros : La función no acepta ningún parámetro.
Valor de retorno : la función devuelve un valor integral de hashCode.
A continuación se muestra la implementación de la función anterior:
Programa 1 :
// Java program to illustrate the // hashCode() method import java.text.DecimalFormat; import java.util.Currency; import java.util.Locale; public class Main { public static void main(String[] args) { // Create the DecimalFormat Instance DecimalFormat deciFormat = new DecimalFormat(); // Print the hashCode value System.out.println(deciFormat.hashCode()); } }
Producción:
423132
Programa 2 :
// Java program to illustrate the // hashCode() method import java.text.DecimalFormat; import java.util.Currency; import java.util.Locale; import java.math.RoundingMode; public class Main { public static void main(String[] args) { // Create the DecimalFormat Instance DecimalFormat deciFormat = new DecimalFormat(); deciFormat.getInstance(Locale.US); // Print the hashCode Value System.out.println(deciFormat.hashCode()); } }
Producción:
423132
Referencia : https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#hashCode()