java.time.Month.query() 方法示例 java.time.Month.plus() 方法示例 java.time.Month.range() 方法示例 java.time.Month.query() 方法示例 package com.codingdict; import java.time.Month; import java.time.temporal.TemporalQueries; public class MonthDemo { public static void main(String[] args) { Month month = Month.of(2); System.out.printf("Month precision is %s%n", month.query(TemporalQueries.precision())); } } java.time.Month.plus() 方法示例 java.time.Month.range() 方法示例