Java 中的 Period toTotalMonths() 方法
可以使用 Java 中 Period 类的 toTotalMonths() 方法获取特定 Period 的总月数。此方法不需要任何参数,它以 long 值的形式返回 Period 中的总月数。
演示此方法的程序如下
示例
import java.time.Period; public class Demo { public static void main(String[] args) { String period = "P2Y1M15D"; Period p = Period.parse(period); System.out.println("The Period is: " + p); System.out.println("The total number of months are: " + p.toTotalMonths()); } }
输出
The Period is: P2Y1M15D The total number of months are: 25
现在了解一下上述程序。
首先,显示 Period。然后,使用 toTotalMonths() 方法获取 Period 的总月数并显示。演示此方法的代码片段如下
String period = "P2Y1M15D"; Period p = Period.parse(period); System.out.println("The Period is: " + p); System.out.println("The total number of months are: " + p.toTotalMonths());
广告