📜  Java中的 ZonedDateTime getMonth() 方法及示例

📅  最后修改于: 2022-05-13 01:54:25.610000             🧑  作者: Mango

Java中的 ZonedDateTime getMonth() 方法及示例

ZonedDateTime类的getMonth()方法用于使用此 ZonedDateTime 中的 Month 枚举获取月份字段。如果您需要访问原始 int 值,则枚举提供 int 值。

句法:

public Month getMonth()

参数:此方法不带任何参数。

返回值:此方法返回一个枚举Month ,表示一年中的月份。

下面的程序说明了 getMonth() 方法:

方案一:

// Java program to demonstrate
// ZonedDateTime.getMonth() 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
        Month value = zoneddatetime.getMonth();
  
        // print result
        System.out.println("month:" + value);
    }
}
输出:
month:DECEMBER

方案二:

// Java program to demonstrate
// ZonedDateTime.getMonth() 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
        Month value = zoneddatetime.getMonth();
  
        // print result
        System.out.println("month:" + value);
    }
}
输出:
month:OCTOBER

参考: https: Java/time/ZonedDateTime.html#getMonth()