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

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

Java中的 MonthDay hashCode() 方法及示例

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

句法:

public int hashCode()

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

返回值:该方法返回一个合适的哈希码。

下面的程序说明了 hashCode() 方法:
方案一:

// Java program to demonstrate
// MonthDay.hashCode() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create a MonthDay object
        MonthDay month = MonthDay.parse("--10-12");
  
        // print hashcode
        System.out.println("hashCode"
                           + " of YearMonth: "
                           + month.hashCode());
    }
}
输出:
hashCode of YearMonth: 652

方案二:

// Java program to demonstrate
// MonthDay.from() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create a MonthDay object
        MonthDay month = MonthDay.parse("--08-31");
  
        // print hashcode
        System.out.println("hashCode"
                           + " of YearMonth: "
                           + month.hashCode());
    }
}
输出:
hashCode of YearMonth: 543

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