El método hashCode() de la clase Year en Java se utiliza para obtener un código hash adecuado para el objeto Year actual.
Sintaxis :
public int hashCode()
Parámetro : Este método no acepta ningún parámetro.
Valor devuelto : Devuelve un código hash integral adecuado para el objeto de año con el que se utiliza. Nunca devuelve un valor NULL.
Los siguientes programas ilustran el método hashCode() de Year 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) { // Creates a Year object Year firstYear = Year.of(1997); // Print the hash code for // the current year object System.out.println(firstYear.hashCode()); } }
Producción:
1997
Programa 2 :
// Program to illustrate the hashCode() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Creates a Year object Year firstYear = Year.of(2018); // Print the hash code for // the current year object System.out.println(firstYear.hashCode()); } }
Producción:
2018
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#hashCode–