Java 中的 Duration ZERO 字段
ZERO 字段将 Duration 类的持续时间设置为零。该字段与 Java 中不同数据类型的 null 值完全相同。
一个演示 ZERO 字段的程序如下 −
示例
import java.time.Duration; public class Demo { public static void main(String[] args) { Duration d = Duration.ZERO; boolean flag = d.isZero(); System.out.println("The duration is: " + d); if(flag) System.out.println("The above duration is of zero length"); else System.out.println("The above duration is not of zero length"); } }
输出
The duration is: PT0S The above duration is of zero length
现在让我们了解一下上面的程序。
首先使用 ZERO 域将持续时间设置为零,然后显示它。然后标志保存 isZero() 方法的返回值。根据标志中的值,持续时间的长度为零或非零并将打印。一个演示此功能的代码片段如下 −
Duration d = Duration.ZERO; boolean flag = d.isZero(); System.out.println("The duration is: " + d); if(flag) System.out.println("The above duration is of zero length"); else System.out.println("The above duration is not of zero length");
广告