java.time.Month.plus() 方法示例 java.time.Month.of() 方法示例 java.time.Month.query() 方法示例 java.time.Month.plus() 方法示例 package com.codingdict; import java.time.Month; public class MonthDemo { public static void main(String[] args) { Month month = Month.of(5); System.out.println(month); System.out.println(month.plus(1)); } } java.time.Month.of() 方法示例 java.time.Month.query() 方法示例