El método hashCode() de la clase YearMonth en Java se usa para crear un código hash adecuado para esta instancia de YearMonth con la que se usa.
Sintaxis :
public int hashCode()
Parámetro : Este método no acepta ningún parámetro.
Valor de retorno : devuelve un valor de código hash integral adecuado para esta instancia de YearMonth.
Los siguientes programas ilustran el método hashCode() de YearMonth en Java:
Programa 1 :
// Program to illustrate the hashCode() method import java.util.*; import java.time.*; import java.time.format.DateTimeFormatter; public class GfG { public static void main(String[] args) { // Create a YearMonth object YearMonth thisYearMonth = YearMonth.of(2017, 8); // Get the hash code value System.out.println(thisYearMonth.hashCode()); } }
Producción:
1073743841
Programa 2 :
// Program to illustrate the hashCode() method import java.util.*; import java.time.*; import java.time.format.DateTimeFormatter; public class GfG { public static void main(String[] args) { // Create a YearMonth object YearMonth thisYearMonth = YearMonth.of(2018, 5); // Get the hash code value System.out.println(thisYearMonth.hashCode()); } }
Producción:
671090658
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#hashCode–