Java中的 ZonedDateTime hashCode() 方法及示例
ZonedDateTime类的hashCode()方法用于获取此 ZonedDateTime 的哈希码。 Hashcode 是 JVM 在创建对象时生成的唯一代码。它可用于对哈希表、哈希图等哈希相关算法执行一些操作。也可以使用此唯一代码搜索对象。
句法:
public ZoneId hashCode()
参数:此方法不带任何参数。
返回值:该方法返回一个整数值,代表一个合适的哈希码。
下面的程序说明了 hashCode() 方法:
方案一:
// Java program to demonstrate
// ZonedDateTime.hashCode() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zoneddatetime
= ZonedDateTime.parse(
"2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
// get hashcode
int value = zoneddatetime.hashCode();
// print result
System.out.println("hashcode:" + value);
}
}
输出:
hashcode:1966859253
方案二:
// Java program to demonstrate
// ZonedDateTime.hashCode() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zoneddatetime
= ZonedDateTime.parse(
"1918-10-25T23:12:38.543+02:00[Europe/Paris]");
// get hashcode
int value = zoneddatetime.hashCode();
// print result
System.out.println("hashcode:" + value);
}
}
输出:
hashcode:1110445649
参考: https: Java/time/ZonedDateTime.html#hashCode()