Java中的Period isZero()方法

使用isZero()Java的Period类中的方法,可以检查Period中的天,月和年是否为零。此方法不需要任何参数。此外,如果期间中的天,月和年为零,则返回true,否则返回false。

演示此程序如下

示例

import java.time.Period;
public class Demo {
   public static void main(String[] args) {
      String period = "P0Y0M0D";
      Period p = Period.parse(period);
      System.out.println("The Period is: " + p);
      System.out.println("The days, months and years in the Period are zero? " + p.isZero());
   }
}

输出结果

The Period is: P0D
The days, months and years in the Period are zero? true

现在让我们了解上面的程序。

首先显示期间。然后使用该isZero()方法检查“期间”中的天,月和年是否为零,并显示返回值。演示此代码段如下所示:

String period = "P0Y0M0D";
Period p = Period.parse(period);
System.out.println("The Period is: " + p);
System.out.println("The days, months and years in the Period are zero? " + p.isZero());