當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Instant hashCode()用法及代碼示例


Instant Class的hashCode()方法用於獲取此Instant的hashCode。如果對象不變,則哈希碼始終相同。 Hashcode是由JVM在對象創建時生成的唯一代碼。它可用於對與哈希相關的算法(如哈希表,哈希圖等)執行某些操作。還可以使用其唯一代碼(哈希碼)搜索對象。

用法:

public int hashCode()

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


以下示例程序旨在說明Instant.hashCode()方法:

示例1:

// 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

示例2:

// 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://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#hashCode()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant hashCode() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。