java.time.YearMonth.hashCode()
方法返回此YearMonth
的雜湊碼。
以下是java.time.YearMonth.hashCode()
方法的宣告。
public int hashCode()
合適的雜湊碼。
以下範例顯示了java.time.YearMonth.hashCode()
方法的用法。
package com.yiibai;
import java.time.YearMonth;
public class YearMonthDemo {
public static void main(String[] args) {
YearMonth date = YearMonth.of(2017,12);
System.out.println(date.hashCode());
}
}
編譯並執行上面的程式,這將產生以下結果 -
1610614753