Java中的 LocalDate hashCode() 方法及示例
Java中 LocalDate 类的 hashCode() 方法获取年份字段。
语法:
public int hashCode()
参数:此方法不接受任何参数。
返回值:该函数返回一个合适的哈希码。
下面的程序说明了Java中 LocalDate 的hashCode()方法:
程序 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());
}
}
输出:
4133595
方案二:
// 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());
}
}
输出:
4127511
参考:https: Java/time/LocalDate.html#hashCode()