java.time.YearMonth.getMonth()方法

java.time.YearMonth.getMonth()方法使用Month枚舉獲取月份字段。

聲明

以下是java.time.YearMonth.getMonth()方法的聲明。

public Month getMonth()

返回值

一年中的月份,不是null

示例

以下示例顯示了java.time.YearMonth.getMonth()方法的用法。

package com.zaixian;

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

上一篇: java.time.YearMonth類 下一篇: java.time.ZonedDateTime類