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:
import java.util.*;
import java.time.*;
import java.time.format.DateTimeFormatter;
public class GfG {
public static void main(String[] args)
{
YearMonth thisYearMonth = YearMonth.of( 2017 , 8 );
System.out.println(thisYearMonth.hashCode());
}
}
|
Program 2:
import java.util.*;
import java.time.*;
import java.time.format.DateTimeFormatter;
public class GfG {
public static void main(String[] args)
{
YearMonth thisYearMonth = YearMonth.of( 2018 , 5 );
System.out.println(thisYearMonth.hashCode());
}
}
|
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#hashCode–
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Nov, 2018
Like Article
Save Article