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()); } } |
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()); } } |
4127511
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#hashCode–
Recommended Posts:
- ChronoLocalDate until(ChronoLocalDate) Method in Java with Examples
- ChronoLocalDate from() method in Java with Examples
- ChronoLocalDate get() method in Java with Examples
- ChronoLocalDate isLeapYear() method in Java with Examples
- ChronoLocalDate query() Method in Java with Examples
- ChronoLocalDate getLong() method in Java with Examples
- ChronoLocalDate lengthOfYear() method in Java with Examples
- LocalDate until(ChronoLocalDate) Method in Java with Examples
- ChronoLocalDate getEra() method in Java with Examples
- ChronoLocalDate with(TemporalAdjuster) Method in Java with Examples
- ChronoLocalDate isAfter() method in Java with Examples
- ChronoLocalDate range() method in Java with Examples
- ChronoLocalDate isBefore() method in Java with Examples
- ChronoLocalDate toEpochDay() method in Java with Examples
- ChronoLocalDate plus(TemporalAmount) method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.