java.time.Month.minus() 方法示例 java.time.Month.minLength() 方法示例 java.time.Month.of() 方法示例 java.time.Month.minus() 方法示例 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.minus(1)); } } java.time.Month.minLength() 方法示例 java.time.Month.of() 方法示例