Java中的 ChronoLocalDate hashCode() 方法及示例
Java中ChronoLocalDate接口的hashCode()方法用于获取这个ChronoLocalDate对象的整数形式的hashCode值。
语法:
public int hashCode()
参数:此方法不接受任何参数。
返回值:该函数以整数形式返回一个合适的哈希码。
下面的程序说明了Java中 ChronoLocalDate 的hashCode()方法:
程序 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 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
参考:https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/ChronoLocalDate.html#hashCode–