Método ChronoPeriod isNegative() en Java con ejemplos

El método isNegative() de la clase ChronoPeriod 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:

boolean isNegative()

Parámetros: Este método no acepta ningún parámetro.

Valor devuelto: este método devuelve verdadero si alguno de los tres valores AÑOS, MESES, DÍAS 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.*;
import java.time.chrono.*;
import java.time.temporal.ChronoUnit;
  
public class ChronoPeriodDemo {
  
    // Function to check if any of the three
    // YEAR, MONTH, DAY is negative
    static void ifNegative(int year, int months, int days)
    {
        ChronoPeriod 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.*;
import java.time.chrono.*;
import java.time.temporal.ChronoUnit;
  
public class ChronoPeriodDemo {
  
    // Function to check if any of the three
    // YEAR, MONTH, DAY is negative
    static void ifNegative(int year, int months, int days)
    {
        ChronoPeriod 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/9/docs/api/java/time/chrono/ChronoPeriod.html#isNegative–

Publicación traducida automáticamente

Artículo escrito por srinam y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *