Friday, September 19, 2025
HomeLanguagesJavaYearMonth hashCode() method in Java

YearMonth hashCode() method in Java

The hashCode() method of YearMonth class in Java is used to create a suitable hash code for this YearMonth instance with which it is used.

Syntax:

public int hashCode()

Parameter: This method does not accepts any parameter.

Return Value: It returns a suitable integral hash code value for this YearMonth instance.

Below programs illustrate the hashCode() method of YearMonth in Java:
Program 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());
    }
}


Output:

1073743841

Program 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());
    }
}


Output:

671090658

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#hashCode–

RELATED ARTICLES

Most Popular

Dominic
32301 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6665 POSTS0 COMMENTS
Nicole Veronica
11840 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7056 POSTS0 COMMENTS
Thapelo Manthata
6739 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS