java.time.YearMonth hashCode()方法
java.time.Year.hashCode()方法返回此YearMonth的哈希码。
1 语法
public int hashCode()
2 参数
无
3 返回值
该方法返回一个合适的哈希码。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.YearMonth hashCode()方法
*/
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
热门文章
优秀文章