Java 中的 MonthDay hashCode() 方法
可以使用 Java 中 MonthDay 类中的 hashCode() 方法来获取 MonthDay 的哈希码值。此方法不需要任何参数,它会返回 MonthDay 的哈希码值。
演示此内容的一个程序如下所示
示例
import java.time.*; public class Demo { public static void main(String[] args) { MonthDay md = MonthDay.parse("--02-21"); System.out.println("The MonthDay is: " + md); System.out.println("The hash code is: " + md.hashCode()); } }
输出
The MonthDay is: --02-21 The hash code is: 149
现在让我们了解一下上述程序。
首先显示 MonthDay。然后使用 hashCode() 方法获取 MonthDay 的哈希码值并显示该值。演示此内容的代码片段如下所示
MonthDay md = MonthDay.parse("--02-21"); System.out.println("The MonthDay is: " + md); System.out.println("The hash code is: " + md.hashCode());
广告