📜  Java中的即时 hashCode() 方法和示例

📅  最后修改于: 2022-05-13 01:54:30.658000             🧑  作者: Mango

Java中的即时 hashCode() 方法和示例

Instant 类hashCode()方法用于获取此 Instant 的 hashCode。如果对象没有改变,哈希码总是相同的。 Hashcode 是 JVM 在创建对象时生成的唯一代码。它可用于对哈希表、哈希图等哈希相关算法执行一些操作。也可以使用其唯一代码(哈希码)搜索对象。

句法:

public int hashCode()

返回:此方法返回此 Instant 的hashCode

下面的程序说明了 Instant.hashCode() 方法:

方案一:

// Java program to demonstrate
// Instant.hashCode() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a Instant object
        Instant instant
            = Instant.parse("2018-12-30T19:34:50.63Z");
  
        // get hashCode
        // using hashCode()
        int value = instant.hashCode();
  
        // print result
        System.out.println("hashCode value: "
                           + value);
    }
}
输出:
hashCode value: -683539878

方案二:

// Java program to demonstrate
// Instant.hashCode() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a Instant object
        Instant instant = Instant.now();
  
        // current Instant
        System.out.println("Current Instant: "
                           + instant);
  
        // get hashCode
        // using hashCode()
        int value = instant.hashCode();
  
        // print result
        System.out.println("hashCode value: "
                           + value);
    }
}
输出:
Current Instant: 2018-11-27T04:45:52.428Z
hashCode value: 1896457472

参考资料:https: Java/time/Instant.html#hashCode()