El método hashCode() de la clase LocalDate en Java obtiene el campo del año.
Sintaxis :
public int hashCode()
Parámetro : Este método no acepta ningún parámetro.
Valor de retorno : la función devuelve un código hash adecuado.
Los siguientes programas ilustran el método hashCode() de LocalDate en Java:
Programa 1 :
// Program to illustrate the hashCode() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date LocalDate dt = LocalDate.parse("2018-11-27"); // Prints the hash-code System.out.println(dt.hashCode()); } }
Producción:
4133595
Programa 2 :
// Program to illustrate the hashCode() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date LocalDate dt = LocalDate.parse("2015-12-23"); // Prints the hash-code System.out.println(dt.hashCode()); } }
Producción:
4127511
Referencia : https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#hashCode()