當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java OffsetDateTime getMonthValue()用法及代碼示例


Java中OffsetDateTime類的getMonthValue()方法使用Month枚舉獲取month-of-year字段。

用法:

public int getMonthValue()

參數:此方法不接受任何參數。


返回值:它返回month-of-year,範圍為1到12。

以下示例程序旨在說明getMonthValue()方法:

示例1:

// Java program to demonstrate the getMonthValue() method 
  
import java.time.OffsetDateTime; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // parses a date 
        OffsetDateTime date = OffsetDateTime.parse("2018-12-03T12:30:30+01:00"); 
  
        // Prints the month of given date 
        System.out.println("Month: " + date.getMonthValue()); 
    } 
}

程序2

// Java program to demonstrate the getMonthValue() method 
  
import java.time.OffsetDateTime; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // parses a date 
        OffsetDateTime date = OffsetDateTime.parse("2016-10-03T12:30:30+01:00"); 
  
        // Prints the month of given date 
        System.out.println("Month: " + date.getMonthValue()); 
    } 
}

參考: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#getMonthValue–



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 OffsetDateTime getMonthValue() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。