LocalDateTime类的getYear()方法用于返回year字段。此方法将MIN_YEAR到MAX_YEAR的Year的原始int值返回。
用法:
public int getYear()
参数:此方法不接受任何参数。
返回值:此方法返回一个整数值,该整数值是从MIN_YEAR到MAX_YEAR的年份的原始int值。
以下示例程序旨在说明LocalDateTime.getYear()方法:
示例1:
// Java program to demonstrate
// LocalDateTime.getYear() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a LocalDateTime Object
LocalDateTime local
= LocalDateTime.parse("2018-12-03T12:39:10");
// get Year
int year = local.getYear();
// print result
System.out.println("Year: "
+ year);
}
}
输出:
Year: 2018
示例2:
// Java program to demonstrate
// LocalDateTime.getYear() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a LocalDateTime Object
LocalDateTime local
= LocalDateTime.parse("2019-01-28T22:29:10");
// get Year
int year = local.getYear();
// print result
System.out.println("Year: "
+ year);
}
}
输出:
Year: 2019
参考:https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#getYear()
相关用法
- Java ZonedDateTime getYear()用法及代码示例
- Java LocalDate getYear()用法及代码示例
- Java OffsetDateTime getYear()用法及代码示例
- Java LocalDateTime until()用法及代码示例
- Java LocalDateTime plus()用法及代码示例
- Java LocalDateTime from()用法及代码示例
- Java LocalDateTime now()用法及代码示例
- Java LocalDateTime with()用法及代码示例
- Java LocalDateTime withSecond()用法及代码示例
- Java LocalDateTime parse()用法及代码示例
- Java LocalDateTime plusDays()用法及代码示例
- Java LocalDateTime withDayOfMonth()用法及代码示例
- Java LocalDateTime getMonth()用法及代码示例
- Java LocalDateTime getDayOfMonth()用法及代码示例
- Java LocalDateTime withNano()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 LocalDateTime getYear() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。