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

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

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

Java中 OffsetDateTime 类的getMonthValue()方法使用 Month 枚举获取月份字段。

句法 :

public int getMonthValue()

参数:此方法不接受任何参数。

返回值:返回一年中的月份,范围从 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());
    }
}

方案二

// 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: Java/time/OffsetDateTime.html#getMonthValue–