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


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


使用ZonedDateTime類的getMonthValue()方法從該ZonedDateTime中獲取month-of-year字段位於1到12之間。

用法:

public int getMonthValue()

參數:此方法不帶任何參數。


返回值:此方法返回一個表示month-of-year的整數,範圍是1到12。

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

示例1:

// Java program to demonstrate 
// ZonedDateTime.getMonthValue() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a ZonedDateTime object 
        ZonedDateTime zoneddatetime 
            = ZonedDateTime.parse( 
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]"); 
  
        // get month field 
        int value = zoneddatetime.getMonthValue(); 
  
        // print result 
        System.out.println("month:" + value); 
    } 
}
輸出:
month:12

示例2:

// Java program to demonstrate 
// ZonedDateTime.getMonthValue() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a ZonedDateTime object 
        ZonedDateTime zoneddatetime 
            = ZonedDateTime.parse( 
                "2018-10-25T23:12:38.543+02:00[Europe/Paris]"); 
  
        // get month field 
        int value = zoneddatetime.getMonthValue(); 
  
        // print result 
        System.out.println("month:" + value); 
    } 
}
輸出:
month:10

參考: https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#getMonthValue()



相關用法


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