java.time.LocalDate.getMonth()方法

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

聲明

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

public Month getMonth()

返回值

一年中的月份,不是null

示例

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

package com.zaixian;

import java.time.LocalDate;

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

      LocalDate date = LocalDate.parse("2017-02-03");
      System.out.println(date.getMonth());
   }
}

編譯並運行上面的程式,這將產生以下結果 -

FEBRUARY

上一篇: java.time.LocalDate類 下一篇: java.time.LocalDateTime類