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


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


Java中Year類的hashCode()方法用於為當前Year對象獲取合適的哈希碼。

用法

public int hashCode()

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


返回值:對於使用它的year對象,它返回一個合適的整數哈希碼。它從不返回NULL值。

以下程序說明了Java中Year的hashCode()方法:
示例1:

// Program to illustrate the hashCode() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Creates a Year object 
        Year firstYear = Year.of(1997); 
  
        // Print the hash code for 
        // the current year object 
        System.out.println(firstYear.hashCode()); 
    } 
}
輸出:
1997

示例2:

// Program to illustrate the hashCode() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Creates a Year object 
        Year firstYear = Year.of(2018); 
  
        // Print the hash code for 
        // the current year object 
        System.out.println(firstYear.hashCode()); 
    } 
}
輸出:
2018

參考: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#hashCode-



相關用法


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