當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Period isZero()用法及代碼示例


Java中的Period類的isZero()方法用於檢查此周期中的三個YEAR,MONTH,DAYS是否全部為零。

為了檢查零周期,該函數被廣泛使用。零期間是YEAR,MONTHS和DAYS這三個時間均為零的期間。

用法:


public 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.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodDemo { 
  
    // Function to check if all of the three YEAR, MONTH, DAY are zero 
    static void ifZero(int year, int months, int days) 
    { 
        Period 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.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodDemo { 
  
    // Function to check if all of the three YEAR, MONTH, DAY are zero 
    static void ifZero(int year, int months, int days) 
    { 
        Period 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/8/docs/api/java/time/Period.html#isZero–



相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 Period isZero() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。