java.time.YearMonth.now() 方法
描述
java.time.YearMonth.now(Clock clock) 方法从指定的时钟获取当前的年月。
声明
以下是 java.time.YearMonth.now(Clock clock) 方法的声明。
public static YearMonth now(Clock clock)
参数
clock − 要使用的时钟,不为空。
返回值
当前年月,不为空。
示例
下面的例子展示了 java.time.YearMonth.now(Clock clock) 方法的使用。
package com.tutorialspoint; import java.time.Clock; import java.time.YearMonth; public class YearMonthDemo { public static void main(String[] args) { YearMonth date = YearMonth.now(Clock.systemUTC()); System.out.println(date); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
2017-03