El método hashCode() de la clase java.text.ChoiceFormat se utiliza para obtener el código hash para el objeto de formato elegido. Este valor de código hash se devuelve como un número entero.
Sintaxis:
public int hashCode()
Parámetro : Este método no acepta ningún parámetro.
Valor de retorno: este método devuelve el código hash para el objeto de formato elegido como un número entero.
A continuación se muestran los ejemplos para ilustrar el método hashCode() :
Ejemplo 1:
// Java program to demonstrate hashCode() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing ChoiceFormat ChoiceFormat cf = new ChoiceFormat( "4#wed| 5#thu | 6#fri | 7#sat"); // getting hashcode of ChoiceFormat object // using hashCode() method int hash = cf.hashCode(); // display the result System.out.print("hashCode :- " + hash); } }
Producción:
hashCode :- 113634
Ejemplo 2:
// Java program to demonstrate hashCode() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing limit double[] limit = { 1, 2, 3, 4 }; // creating and initializing format String[] format = { "add", "sub", "multiply", "divide" }; // creating and initializing ChoiceFormat ChoiceFormat cf = new ChoiceFormat(limit, format); // getting hashcode of ChoiceFormat object // using hashCode() method int hash = cf.hashCode(); // display the result System.out.print("hashCode :- " + hash); } }
Producción:
hashCode :- -1331463043
Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/ChoiceFormat.html#hashCode–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA