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


Java ZonedDateTime getMonthValue()用法及代码示例


使用ZonedDateTime类的getMonthValue()方法从该ZonedDateTime中获取month-of-year字段位于1到12之间。

用法:

public int getMonthValue()

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


返回值:此方法返回一个表示month-of-year的整数,范围是1到12。

以下示例程序旨在说明getMonthValue()方法:

示例1:

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

示例2:

// 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://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#getMonthValue()



相关用法


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