java.time.LocalDate getMonth()方法

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

1 语法

public Month getMonth()

2 参数

3 返回值

一年中的月份,不是null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.LocalDate getMonth()方法
 */
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

 

热门文章

优秀文章