java.time.YearMonth of()方法
java.time.Year.of(int year,Month month)方法从年和月获取YearMonth的实例。
1 语法
public static YearMonth of(int year,Month month)
2 参数
year:要表示的年份,从MIN_YEAR到MAX_YEAR之间的值。
month:表示月份。
3 返回值
年份,不是null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.YearMonth of()方法
*/
import java.time.Month;
import java.time.YearMonth;
public class YearMonthDemo {
public static void main(String[] args) {
YearMonth year = YearMonth.of(2017,Month.DECEMBER);
System.out.println(year);
}
}
输出结果为:
2017-12
热门文章
优秀文章