java.time.YearMonth.getMonthValue() 方法示例 java.time.YearMonth.getMonth() 方法示例 java.time.YearMonth.getYear() 方法示例 java.time.YearMonth.getMonthValue() 方法示例 package com.codingdict; import java.time.YearMonth; public class YearMonthDemo { public static void main(String[] args) { YearMonth date = YearMonth.of(2017,12); System.out.println(date.getMonthValue()); } } java.time.YearMonth.getMonth() 方法示例 java.time.YearMonth.getYear() 方法示例