Java中的 YearMonth hashCode() 方法
Java中 YearMonth 类的 hashCode() 方法用于为使用它的 YearMonth 实例创建合适的哈希码。
语法:
public int hashCode()
参数:此方法不接受任何参数。
返回值:它为此 YearMonth 实例返回一个合适的整数哈希码值。
下面的程序说明了Java中 YearMonth 的 hashCode() 方法:
程序 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());
}
}
输出:
1073743841
方案二:
// 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());
}
}
输出:
671090658
参考:https: Java/time/YearMonth.html#hashCode–