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

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

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

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

句法 :

public Month getMonth()

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

返回值:它返回一年中的月份,而不是 null..

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

程序 1:

// Java program to demonstrate the getMonth() 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.getMonth());
    }
}
输出:
Month: DECEMBER

方案二

// Java program to demonstrate the getMonth() method
import java.time.OffsetDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // parses a date
        OffsetDateTime date = OffsetDateTime.parse("2016-11-31T12:30:30+05:00");
  
        // Prints the month of given date
        System.out.println("Month: " + date.getMonth());
    }
}
输出:
Month: NOVEMBER

参考:https: Java/time/OffsetDateTime.html#getMonth–