java.time.MonthDay.hashCode() 方法示例



说明

java.time.MonthDay.hashCode() 方法获取此月日的一个哈希码。

声明

以下是 java.time.MonthDay.hashCode() 方法的声明。

public int hashCode()

返回值

一个合适的哈希码。

示例

以下示例展示了 java.time.MonthDay.hashCode() 方法的用法。

package com.tutorialspoint;

import java.time.MonthDay;

public class MonthDayDemo {
   public static void main(String[] args) {
 
      MonthDay time = MonthDay.parse("--12-30");
      System.out.println(time.hashCode());  
   }
}

让我们编译并运行以上程序,这将产生以下结果 −

798
广告