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


Java LocalDateTime getMonth()用法及代碼示例


LocalDateTime類的getMonth()方法用於返回month-of-year字段。使用“月”枚舉返回此字段。枚舉可以提供原始int值。

用法:

public Month getMonth()

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


返回值:此方法返回此LocalDateTime月份的枚舉Month。

以下示例程序旨在說明LocalDateTime.getMonth()方法:

示例1:

// Java program to demonstrate 
// LocalDateTime.getMonth() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a LocalDateTime Object 
        LocalDateTime local 
            = LocalDateTime.parse("2007-12-02T22:48:29"); 
  
        // get Month enum value field 
        Month month = local.getMonth(); 
  
        // print result 
        System.out.println("Month: "
                           + month); 
    } 
}
輸出:
Month: DECEMBER

示例2:

// Java program to demonstrate 
// LocalDateTime.getMonth() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a LocalDateTime Object 
        LocalDateTime local 
            = LocalDateTime.parse("2017-07-22T09:32:42"); 
  
        // get Month enum value field 
        Month month = local.getMonth(); 
  
        // print result 
        System.out.println("Month: "
                           + month); 
    } 
}
輸出:
Month: JULY

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



相關用法


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