Java 8 Clock hashCode() 方法


可以利用 Java 中 Clock 类的 hashCode() 方法来获取时钟对象哈希码。此方法不需要参数,它将返回一个时钟对象的有效哈希码。

演示这一点的示例如下 −

示例

 在线演示

import java.time.*;
public class Demo {
   public static void main(String[] args) {
      Clock c = Clock.systemDefaultZone();
      int hashCode = c.hashCode();
      System.out.println("The clock is: " + c);
      System.out.println("The hash code is: " + hashCode);
   }
}

输出

The clock is: SystemClock[Etc/UTC]
The hash code is: 227139178

现在让我们来理解以上程序。

可以使用 hashCode() 方法来获取指定时钟对象的哈希码,然后显示此值。演示这一点的代码段如下 −

Clock c = Clock.systemDefaultZone();
int hashCode = c.hashCode();
System.out.println("The clock is: " + c);
System.out.println("The hash code is: " + hashCode);

更新于:2019 年 7 月 30 日

225 次浏览

开启你的 职业生涯

通过完成本课程来获得认证

开始学习
广告