El método hashCode() en la clase Calendar se usa para devolver el código hash para este objeto de calendario.
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 para este objeto de calendario. Los siguientes
programas ilustran el funcionamiento del Método hashCode() de la clase Calendario:
Ejemplo 1:
Java
// Java code to illustrate // hashCode() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) { // Creating a calendar object Calendar calndr = Calendar.getInstance(); // Displaying the current calendar System.out.println("The time on" + " Calendar shows: " + calndr.getTime()); // Getting the hash code int hash_code = calndr.hashCode(); System.out.println("The hash code " + "for this calendar is: " + hash_code); } }
Producción:
The time on Calendar shows: Wed Feb 20 15:55:22 UTC 2019 The hash code for this calendar is: 194416203
Ejemplo 2:
Java
// Java code to illustrate // hashCode() method import java.util.*; public class Calendar_Demo { public static void main(String args[]) { // Creating a calendar Calendar calndr = new GregorianCalendar(2018, 6, 10); // Displaying the current calendar System.out.println("The time on" + " Calendar shows: " + calndr.getTime()); // Getting the hash code int hash_code = calndr.hashCode(); System.out.println("The hash code " + "for this calendar is: " + hash_code); } }
Producción:
The time on Calendar shows: Tue Jul 10 00:00:00 UTC 2018 The hash code for this calendar is: -2123101761
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.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