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


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


Java中的ChronoLocalDate接口的hashCode()方法用於以整數形式獲取此ChronoLocalDate對象的hashCode值。

用法

public int hashCode()

參數:此方法不接受任何參數。


返回值:該函數以整數形式返回合適的哈希碼。

以下程序說明了Java中ChronoLocalDate的hashCode()方法:

程序1

// Program to illustrate the hashCode() method 
  
import java.util.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        ChronoLocalDate dt 
            = LocalDate.parse("2018-11-27"); 
  
        // Prints the hash-code 
        System.out.println(dt.hashCode()); 
    } 
}
輸出:
4133595

程序2

// Program to illustrate the hashCode() method 
  
import java.util.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        ChronoLocalDate dt 
            = LocalDate.parse("2015-12-23"); 
  
        // Prints the hash-code 
        System.out.println(dt.hashCode()); 
    } 
}
輸出:
4127511

參考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#hashCode–



相關用法


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