Java 中 LocalDate hashCode() 方法
可以通过 Java 中 LocalDate 类的 hashCode() 方法获取 LocalDate 的哈希代码值。此方法不要求任何参数,它返回 LocalDate 的哈希代码值。
演示此问题的示例如下 -
示例
import java.time.*; public class Main { public static void main(String[] args) { LocalDate ld = LocalDate.parse("2019-02-15"); System.out.println("The LocalDate is: " + ld); System.out.println("The hash code is: " + ld.hashCode()); } }
输出
The LocalDate is: 2019-02-15 The hash code is: 4135055
现在让我们了解一下上述程序。
首先显示 LocalDate。然后使用 hashCode() 方法获取 LocalDate 的哈希代码值并显示。演示此操作的代码片段如下 -
LocalDate ld = LocalDate.parse("2019-02-15"); System.out.println("The LocalDate is: " + ld); System.out.println("The hash code is: " + ld.hashCode());
广告