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类