当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ChronoPeriod isZero()用法及代码示例


Java中的ChronoPeriod类的isZero()方法用于检查此期间的三个YEAR,MONTH,DAYS是否全部为零。

为了检查零周期,该函数被广泛使用。零期间是YEAR,MONTHS和DAYS这三个时间均为零的期间。

用法:


boolean isZero()

参数:此方法不接受任何参数。

返回值:如果给定时间段的YEARS,MONTHS,DAYS这三个值全部为零,则此方法返回布尔值True,否则将返回False。

以下示例程序旨在说明上述方法:

程序1

// Java code to show the function isZero() 
// to check whether all of the three given units 
// YEAR, MONTH, DAY are zero. 
  
import java.time.*; 
import java.time.chrono.*; 
import java.time.temporal.ChronoUnit; 
  
public class ChronoPeriodDemo { 
  
    // Function to check if all 
    // of the three YEAR, MONTH, DAY are zero 
    static void ifZero(int year, int months, int days) 
    { 
        ChronoPeriod period = Period.of(year, months, days); 
        System.out.println(period.isZero()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        int year = 0; 
        int months = 0; 
        int days = 0; 
  
        ifZero(year, months, days); 
    } 
}
输出:
true

程序2

// Java code to show the function isZero() 
// to check whether all of the three given units 
// YEAR, MONTH, DAY are zero. 
  
import java.time.*; 
import java.time.chrono.*; 
import java.time.temporal.ChronoUnit; 
  
public class ChronoPeriodDemo { 
  
    // Function to check if all 
    // of the three YEAR, MONTH, DAY are zero 
    static void ifZero(int year, int months, int days) 
    { 
        ChronoPeriod period = Period.of(year, months, days); 
        System.out.println(period.isZero()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        int year = 0; 
        int months = 0; 
        int days = -12; 
  
        ifZero(year, months, days); 
    } 
}
输出:
false

参考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoPeriod.html#isZero–



相关用法


注:本文由纯净天空筛选整理自srinam大神的英文原创作品 ChronoPeriod isZero() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。