El método plus() de la interfaz ChronoPeriod en Java se usa para agregar la cantidad dada de período al período especificado. Esta función opera por separado en AÑO, MES y DÍA.
Nota: No se realiza la normalización. 12 meses y 1 año son diferentes.
Sintaxis:
ChronoPeriod plus(TemporalAmount amountToAdd)
Parámetros: esta función acepta un solo parámetro , cantidad para agregar , que es la cantidad para agregar al período. No debe ser nulo.
Valor devuelto Esta función devuelve un ChronoPeriod basado en el período dado con el período solicitado agregado, y esto no debe ser nulo.
Excepciones:
- DateTimeException : esta excepción se devuelve si la cantidad especificada tiene una cronología que no es ISO o contiene una unidad no válida.
- ArithmeticException : esta excepción se detecta si se produce un desbordamiento numérico.
Los siguientes programas ilustran el método anterior:
Programa 1 :
// Java code to show the function plus() // to subtract the two given periods import java.time.*; import java.time.chrono.*; import java.time.temporal.ChronoUnit; public class ChronoPeriodDemo { // Function to subtract two given periods static void addChronoPeriod(ChronoPeriod p1, ChronoPeriod p2) { System.out.println(p1.plus(p2)); } // Driver Code public static void main(String[] args) { // Defining first period int year = 4; int months = 11; int days = 10; ChronoPeriod p1 = Period.of(year, months, days); // Defining second period int year1 = 2; int months1 = 7; int days1 = 8; ChronoPeriod p2 = Period.of(year1, months1, days1); addChronoPeriod(p1, p2); } }
P6Y18M18D
Programa 2 : ChronoPeriod puede ser negativo.
// Java code to show the function plus() // to subtract the two given periods import java.time.*; import java.time.chrono.*; import java.time.temporal.ChronoUnit; public class ChronoPeriodDemo { // Function to add two given periods static void addChronoPeriod(ChronoPeriod p1, ChronoPeriod p2) { System.out.println(p1.plus(p2)); } // Driver Code public static void main(String[] args) { // Defining second period int year1 = 2; int months1 = 7; int days1 = 8; ChronoPeriod p1 = Period.of(year1, months1, days1); // Defining first period int year = 4; int months = 11; int days = 10; ChronoPeriod p2 = Period.of(year, months, days); addChronoPeriod(p1, p2); } }
P6Y18M18D
Referencia : https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoPeriod.html#plus-java.time.temporal.TemporalAmount-