Java 中的 Period withYears() 方法
使用 Java 中 Period 类的 withYears() 方法可以获得一个不变的 Period 副本,其中包含所需数量的年。此方法需要一个参数,即 Period 中的年数,并且它返回包含所需数量的年的 Period。
下面是一个展示此功能的程序
示例
import java.time.Period; public class Demo { public static void main(String[] args) { String period = "P5Y7M15D"; Period p1 = Period.parse(period); System.out.println("The Period is: " + p1); Period p2 = p1.withYears(3); System.out.println("The Period with years altered to 3 is: " + p2); } }
输出
The Period is: P5Y7M15D The Period with years altered to 3 is: P3Y7M15D
下面让我们了解一下上述程序。
首先显示 Period。然后使用 withYears() 方法显示将年数更改为 3 的 Period。演示它的代码片段如下
String period = "P5Y7M15D"; Period p1 = Period.parse(period); System.out.println("The Period is: " + p1); Period p2 = p1.withYears(3); System.out.println("The Period with years altered to 3 is: " + p2);
广告