Java 中的 LocalDate withYear() 方法
Java 中 LocalDate 类的 withYear() 方法用于创建 LocalDate 的不可变副本,其中年的值已根据需要进行修改。此方法需要一个参数,即要在 LocalDate 中设置的年份,并返回年份经过修改后的 LocalDate。
以下程序对此进行了演示:
示例
import java.time.*; public class Main { public static void main(String[] args) { LocalDate ld1 = LocalDate.parse("2019-02-15"); System.out.println("The LocalDate is: " + ld1); LocalDate ld2 = ld1.withYear(2015); System.out.println("The LocalDate with year altered is: " + ld2); } }
输出
The LocalDate is: 2019-02-15 The LocalDate with year altered is: 2015-02-15
现在让我们了解一下上面的程序。
首先显示 LocalDate。然后使用 withYear() 方法显示年份已修改为 2015 的 LocalDate。演示此操作的代码片段如下:
LocalDate ld1 = LocalDate.parse("2019-02-15"); System.out.println("The LocalDate is: " + ld1); LocalDate ld2 = ld1.withYear(2015); System.out.println("The LocalDate with year altered is: " + ld2);
广告