java.util.GregorianCalendar.hashCode() es una función integrada en Java que genera código hash para esta instancia de GregorianCalendar.
Sintaxis:
public int hashCode()
Parámetros: Esta función no acepta ningún parámetro.
Valores devueltos: esta función devuelve un valor entero que representa el código hash para esta instancia de GregorianCalendar.
Ejemplos:
Input : Thu Jul 24 00:53:29 UTC 1997 Output : 2121703905 Input : Tue Jul 24 00:54:11 UTC 2018 Output : -909136554
Los siguientes programas ilustran la función java.util.GregorianCalendar.hashCode():
Programa 1:
// Java Program to illustrate hashCode() function // of GregorianCalendar class import java.io.*; import java.util.*; class GFG { public static void main(String[] args) { // Create a new calendar GregorianCalendar c = (GregorianCalendar) GregorianCalendar.getInstance(); // Display the current date and time System.out.println("Current Date and Time : " + c.getTime()); // Display hashcode for this calendar System.out.println("Hash Code:" + c.hashCode()); } }
Producción:
Current Date and Time : Fri Jul 27 11:43:16 UTC 2018 Hash Code:-612105832
Programa 2:
// Java Program to illustrate hashCode() function // of GregorianCalendar class import java.io.*; import java.util.*; class GFG { public static void main(String[] args) { // Create a new calendar GregorianCalendar c = (GregorianCalendar) GregorianCalendar.getInstance(); // Display the current date and time System.out.println("Current Date and Time : " + c.getTime()); c.add((GregorianCalendar.YEAR), -12); System.out.println("Modified Date and Time : " + c.getTime()); // Display hashcode for this calendar System.out.println("Hash Code of the " + "modified date and time:" + c.hashCode()); } }
Producción:
Current Date and Time : Fri Jul 27 11:43:18 UTC 2018 Modified Date and Time : Thu Jul 27 11:43:18 UTC 2006 Hash Code of the modified date and time:-1346149059
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/GregorianCalendar.html#hashCode()
Publicación traducida automáticamente
Artículo escrito por RICHIK BHATTACHARJEE y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA