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