El método isZero() de la clase ChronoPeriod en Java se usa para verificar si los tres AÑO, MES, DÍAS en este período son cero.
Para verificar los períodos cero, esta función se usa ampliamente. Un período cero es el período en el que los tres AÑOS, MESES y DÍAS son cero.
Sintaxis:
boolean isZero()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve un valor booleano verdadero si los tres valores AÑOS, MESES, DÍAS para el período dado son cero; de lo contrario, devolverá falso.
Los siguientes programas ilustran el método anterior:
Programa 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); } }
Producción:
true
Programa 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); } }
Producción:
false
Referencia : https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoPeriod.html#isZero–