📌  相关文章
📜  Java中的 ZonedDateTime getMonthValue() 方法及示例

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

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

ZonedDateTime类的getMonthValue()方法用于从此 ZonedDateTime 获取介于 1 到 12 之间的月份字段。

句法:

public int getMonthValue()

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

返回值:此方法返回一个整数,表示一年中的月份,从 1 到 12。

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

方案一:

// 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

方案二:

// 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: Java/time/ZonedDateTime.html#getMonthValue()