📜  Java中的 YearMonth getYear() 方法

📅  最后修改于: 2022-05-13 01:54:38.353000             🧑  作者: Mango

Java中的 YearMonth getYear() 方法

Java中 YearMonth 类的 getYear() 方法用于从使用它的 YearMonth 实例中获取 Year 字段的值。它将年份字段的值作为从 MIN_YEAR 到 MAX_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

方案二

// 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: Java/time/YearMonth.html#getYear–