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


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


Java中的YearMonth类的getMonth()方法用于从与其一起使用的Yearyearth实例中获取month字段。它返回month字段作为Month实例。

用法

public Month getMonth()

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


返回值:它将返回此YearMonth实例的month字段。它不返回值,而是返回Month实例。

以下程序说明了Java中YearMonth的getMonth()方法:
示例1:

// Program to illustrate the getMonth() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Create a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2017, 8); 
  
        // Get the month field 
        System.out.println(thisYearMonth.getMonth()); 
    } 
}
输出:
AUGUST

示例2:

// Program to illustrate the getMonth() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Create a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2018, 5); 
  
        // Get the month field 
        System.out.println(thisYearMonth.getMonth()); 
    } 
}
输出:
MAY

参考: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#getMonth-



相关用法


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