java.time.Month.getValue() 方法示例 java.time.Month.getLong() 方法示例 java.time.Month.isSupported() 方法示例 java.time.Month.getValue() 方法示例 package com.codingdict; import java.time.Month; public class MonthDemo { public static void main(String[] args) { Month month = Month.FEBRUARY; System.out.println(month.getValue()); } } java.time.Month.getLong() 方法示例 java.time.Month.isSupported() 方法示例