当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java OffsetDateTime getMonth()用法及代码示例


Java中OffsetDateTime类的getMonth()方法使用Month枚举获取month-of-year字段。

用法:

public Month getMonth()

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


返回值:它返回month-of-year,并且不为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

程序2

// 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://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#getMonth–



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 OffsetDateTime getMonth() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。