Friday, February 13, 2026
HomeLanguagesJavaLocalDate hashCode() method in Java with Examples

LocalDate hashCode() method in Java with Examples

The hashCode() method of LocalDate class in Java gets the year field.

Syntax:

public int hashCode()

Parameter: This method does not accepts any parameter.

Return Value: The function returns a suitable hash code.

Below programs illustrate the hashCode() method of LocalDate in Java:

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


Output:

4133595

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


Output:

4127511

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#hashCode()

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32500 POSTS0 COMMENTS
Milvus
128 POSTS0 COMMENTS
Nango Kala
6879 POSTS0 COMMENTS
Nicole Veronica
12000 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12093 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7252 POSTS0 COMMENTS
Thapelo Manthata
6962 POSTS0 COMMENTS
Umr Jansen
6953 POSTS0 COMMENTS