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-