Java YearMonth getYear()方法

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

程序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-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程