El método isZero() de la clase Período en Java se usa para verificar si los tres AÑO, MES, DÍAS en este período son cero.
Para verificar el período 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:
public 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.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); } }
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.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); } }
Producción:
false
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#isZero–