Thursday, September 4, 2025
HomeLanguagesJavaChronoLocalDate hashCode() method in Java with Examples

ChronoLocalDate hashCode() method in Java with Examples

The hashCode() method of ChronoLocalDate interface in Java is used to get the hashCode value of this ChronoLocalDate object in the integer form.

Syntax:

public int hashCode()

Parameter: This method does not accepts any parameter.

Return Value: The function returns a suitable hash code in the form of integer.

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

Program 1:




// Program to illustrate the hashCode() method
  
import java.util.*;
import java.time.*;
import java.time.chrono.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        ChronoLocalDate 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.*;
import java.time.chrono.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        ChronoLocalDate dt
            = LocalDate.parse("2015-12-23");
  
        // Prints the hash-code
        System.out.println(dt.hashCode());
    }
}


Output:

4127511

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#hashCode–

RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS