Java 中的 Period withMonths() 方法
在 Java 中的 Period 类中,使用 withMonths() 方法执行该 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.withMonths(3); System.out.println("The Period with months altered to 3 is: " + p2); } }
输出
The Period is: P5Y7M15D The Period with months altered to 3 is: P5Y3M15D
现在,让我们了解上述程序。
首先,显示 Period。然后,使用 withMonths() 方法显示将月份数更改为 3 的 Period。演示此操作的代码片段如下
String period = "P5Y7M15D"; Period p1 = Period.parse(period); System.out.println("The Period is: " + p1); Period p2 = p1.withMonths(3); System.out.println("The Period with months altered to 3 is: " + p2);
广告