📜  Java中的年份 hashCode() 方法及示例

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

Java中的年份 hashCode() 方法及示例

Java中 Year 类的 hashCode() 方法用于获取当前 Year 对象的合适哈希码。

语法

public int hashCode()

参数:此方法不接受任何参数。

返回值:它为使用它的年份对象返回一个合适的整数哈希码。它从不返回 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

方案二

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