El método isNegative() de la clase Período en Java se usa para verificar si alguno de los tres AÑO, MES, DÍAS en el período es negativo o no.
Sintaxis:
public boolean isNegative()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve verdadero si cualquiera de los tres AÑOS, MESES, DÍAS valorados para el período dado es negativo; de lo contrario, devolverá falso.
Los siguientes programas ilustran el método isNegative() en Java:
Programa 1 :
// Java code to show the function isNegative() // to check whether any of the three given units // YEAR, MONTH, DAY is negative import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to check if any of the three // YEAR, MONTH, DAY is negative static void ifNegative(int year, int months, int days) { Period period = Period.of(year, months, days); System.out.println(period.isNegative()); } // Driver Code public static void main(String[] args) { int year = -12; int months = 3; int days = 31; ifNegative(year, months, days); } }
Producción:
true
Programa 2 :
// Java code to show the function isNegative() // to check whether any of the three given units // YEAR, MONTH, DAY is negative import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to check if any of the three // YEAR, MONTH, DAY is negative static void ifNegative(int year, int months, int days) { Period period = Period.of(year, months, days); System.out.println(period.isNegative()); } // Driver Code public static void main(String[] args) { int year = 12; int months = 3; int days = 31; ifNegative(year, months, days); } }
Producción:
false
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#isNegative–