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


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


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

用法

public Month getMonth()

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


返回值:该函数返回一年中的月份。

以下示例程序旨在说明Java中LocalDate的getMonth()方法:
程序1

// Program to illustrate the getMonth() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        LocalDate dt = LocalDate.parse("2018-11-27"); 
  
        // Prints the day number 
        System.out.println(dt.getMonth()); 
    } 
}
输出:
NOVEMBER

程序2

// Program to illustrate the getMonth() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        LocalDate dt = LocalDate.parse("2018-01-02"); 
  
        // Prints the day number 
        System.out.println(dt.getMonth()); 
    } 
}
输出:
JANUARY

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



相关用法


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