java.time.YearMonth.now(Clock clock) java.time.YearMonth.now() 方法示例 java.time.YearMonth.now(ZoneId zone) java.time.YearMonth.now(Clock clock) package com.codingdict; 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); } } java.time.YearMonth.now() 方法示例 java.time.YearMonth.now(ZoneId zone)