java.time.Instant hashCode()方法

java.time.Instant.hashCode()方法返回此瞬间的哈希码。

1 语法

public int hashCode()

2 参数

3 返回值

该方法返回合适的哈希码。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 *  java.time.Instant hashCode()方法
 */
import java.time.Instant;

public class InstantDemo {
   public static void main(String[] args) {

      Instant instant = Instant.now();
      System.out.println(instant.hashCode());
   }
}

输出结果为:

1226468241

 

热门文章

优秀文章