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


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


LocalDateTime类的getMonthValue()方法用于返回month-of-year字段。此方法以1到12之间的整数形式从LocalDateTime返回月份。

用法:

public int getMonthValue()

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


返回值:此方法返回整数值,该值是month-of-year字段,范围为1到12。

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

示例1:

// Java program to demonstrate 
// LocalDateTime.getMonthValue() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a LocalDateTime Object 
        LocalDateTime local 
            = LocalDateTime.parse("2018-10-23T22:29:10"); 
  
        // get Month value field 
        int monthvalue = local.getMonthValue(); 
  
        // print result 
        System.out.println("Month Value: "
                           + monthvalue); 
    } 
}
输出:
Month Value: 10

示例2:

// Java program to demonstrate 
// LocalDateTime.getMonthValue() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a LocalDateTime Object 
        LocalDateTime local 
            = LocalDateTime.parse("2018-12-13T12:28:13"); 
  
        // get Month value field 
        int monthvalue = local.getMonthValue(); 
  
        // print result 
        System.out.println("Month Value: "
                           + monthvalue); 
    } 
}
输出:
Month Value: 12

参考:https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#getMonthValue()



相关用法


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