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());

更新于: 2019 年 7 月 30 日

45 次浏览

开启你的 职业生涯

完成课程并获得认证

开始
广告