java.time.YearMonth now()方法
java.time.Year.now()方法从默认时区中的系统时钟获取当前年月。
1 语法
public static YearMonth now()
2 参数
无
3 返回值
使用系统时钟和默认时区的当前年月,不为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Calendar getInstance()方法的例子
*/
import java.time.YearMonth;
public class YearMonthDemo {
public static void main(String[] args) {
YearMonth date = YearMonth.now();
System.out.println(date);
}
}
输出结果为:
2017-03
热门文章
优秀文章