El método hashCode() de la clase DateFormat se utiliza para devolver el valor del código hash de este objeto DateFormat. El código hash es de tipo entero.
Sintaxis:
public int hashCode()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve el valor del código hash de este objeto DateFormat y es de tipo entero.
Los siguientes programas ilustran el funcionamiento del método hashCode() de DateFormat:
Ejemplo 1:
// Java to illustrate hashCode() method import java.text.*; import java.util.*; public class DateFormat_Demo { public static void main(String[] args) { // Initializing DateFormat DateFormat DFormat = DateFormat.getDateTimeInstance(); // Displaying the formats Date date = new Date(); String str_Date1 = DFormat.format(date); System.out.println("The Original: " + (str_Date1)); // Displaying the hash code System.out.println("The hash code: " + DFormat.hashCode()); } }
Producción:
The Original: Mar 27, 2019 10:20:51 AM The hash code: 2034585966
Ejemplo 2:
// Java to illustrate hashCode() method import java.text.*; import java.util.*; public class DateFormat_Demo { public static void main(String[] args) { // Initializing DateFormat DateFormat DFormat = new SimpleDateFormat("MM/dd/yyyy"); // Displaying the formats Date date = new Date(); String str_Date1 = DFormat.format(date); System.out.println("The Original: " + (str_Date1)); // Displaying the hash code System.out.println("The hash code: " + DFormat.hashCode()); } }
Producción:
The Original: 03/27/2019 The hash code: 2087096576
Referencia: https://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html#hashCode()
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA