Java中的 LocalDate withYear() 方法及示例
Java中LocalDate 类的withYear()方法返回此 LocalDate 的副本,其中年份已更改。
句法:
public LocalDate withYear(int year)
参数:此方法接受一个强制参数year ,该参数指定要在结果中设置的年份,可以在从MIN_YEAR到MAX_YEAR的范围内。
返回:该函数返回基于此日期的 LocalDate 和请求的年份,而不是 null。
异常:当年份值无效时,该函数会引发DateTimeException 。
下面的程序说明了LocalDate.withYear()方法:
方案一:
// Program to illustrate the withYear() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
LocalDate dt1 = LocalDate.parse("2018-12-07");
LocalDate result = dt1.withYear(2018);
// Prints the date with year
System.out.println("The date with year is: " + result);
}
}
输出:
The date with year is: 2018-12-07
方案二:
// Program to illustrate the withYear() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
LocalDate dt1 = LocalDate.parse("2018-01-07");
LocalDate result = dt1.withYear(2014);
// Prints the date with year
System.out.println("The date with year is: " + result);
}
}
输出:
The date with year is: 2014-01-07
参考: https: Java/time/LocalDate.html#withYear(int)