java.time.YearMonth getMonth()方法

java.time.Year.getMonth()方法使用Month枚举获取月份字段。

1 语法

public Month getMonth()

2 参数

3 返回值

一年中的月份,不是null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.YearMonth getMonth()方法
 */
import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth date = YearMonth.of(2017,12);
      System.out.println(date.getMonth());  
   }
}

输出结果为:

DECEMBER

 

热门文章

优秀文章