📜  Java中的 LocalDate getYear() 方法及示例

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

Java中的 LocalDate getYear() 方法及示例

Java中LocalDate类的getYear()方法获取年份字段。

语法

public int getYear()

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

返回值:函数返回年份,从MIN_YEARMAX_YEAR

下面的程序说明了Java中 LocalDate 的getYear()方法:

程序 1

// Program to illustrate the getYear() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2018-11-27");
  
        // Prints the day number
        System.out.println(dt.getYear());
    }
}
输出:
2018

方案二

// Program to illustrate the getYear() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2015-11-27");
  
        // Prints the day number
        System.out.println(dt.getYear());
    }
}
输出:
2015

参考:https: Java/time/LocalDate.html#getYear()