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


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


Java中的YearMonth类的getYear()方法用于从与其一起使用的Yearyearth实例中获取Year字段的值。它以从MIN_YEAR到MAX_YEAR的整数形式返回Year字段的值。

用法

public int getYear()

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


返回值:它将年份字段的值作为整数从MIN_YEAR返回到MAX_YEAR。

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

// Program to illustrate the getYear() 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 year field 
        System.out.println(thisYearMonth.getYear()); 
    } 
}
输出:
2017

示例2:

// Program to illustrate the getYear() 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 year field 
        System.out.println(thisYearMonth.getYear()); 
    } 
}
输出:
2018

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



相关用法


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