The getYear() method of an LocalDateTime class is used to return the year field.This method returns the primitive int value for the year from MIN_YEAR to MAX_YEAR.
Syntax:
public int getYear()
Parameter: This method does not accept any parameter.
Returns: This method returns an integer value which is the primitive int value for the year from MIN_YEAR to MAX_YEAR.
Below programs illustrate the LocalDateTime.getYear() method:
Program 1:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
LocalDateTime local
= LocalDateTime.parse( "2018-12-03T12:39:10" );
int year = local.getYear();
System.out.println( "Year: "
+ year);
}
}
|
Program 2:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
LocalDateTime local
= LocalDateTime.parse( "2019-01-28T22:29:10" );
int year = local.getYear();
System.out.println( "Year: "
+ year);
}
}
|
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#getYear()