El método hashCode() de la clase Period en Java se usa para obtener el hashCode generado para este período.
Sintaxis:
public int hashCode()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve el código hash generado para el período dado.
Los siguientes programas ilustran el método hashCode() en Java:
Programa 1 :
// Java code to show the function hashCode() // to get the hashCode for the given period import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to generate hashCode for the given period static void getNumberOfDays(int year, int months, int days) { Period period = Period.of(year, months, days); System.out.println(period.hashCode()); } // Driver Code public static void main(String[] args) { int year = 12; int months = 3; int days = 31; getNumberOfDays(year, months, days); } }
Producción:
2032396
Programa 2 :
// Java code to show the function hashCode() // to get the hashCode for the given period import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to generate hashCode for the given period static void getNumberOfDays(int year, int months, int days) { Period period = Period.of(year, months, days); System.out.println(period.hashCode()); } // Driver Code public static void main(String[] args) { int year = -12; int months = 3; int days = 31; getNumberOfDays(year, months, days); } }
Producción:
2032372
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#hashCode–