java.time.LocalDate.getMonth()方法

2019-10-16 22:37:29

java.time.LocalDate.getMonth()方法使用Month列舉獲取月份欄位。

宣告

以下是java.time.LocalDate.getMonth()方法的宣告。

public Month getMonth()

返回值

一年中的月份,不是null

範例

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

package com.yiibai;

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