java.time.ZonedDateTime.getMonth()方法

2019-10-16 22:33:36

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

宣告

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

public Month getMonth()

返回值

一年中的月份值,不是null

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

package com.yiibai;

import java.time.ZonedDateTime;

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

      ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
      System.out.println(date.getMonth());  
   }
}

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

MARCH