📌  相关文章
📜  Java中的 ChronoPeriod isZero() 方法及示例

📅  最后修改于: 2022-05-13 01:54:30.684000             🧑  作者: Mango

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

方案二

// 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–