El método plus() de la clase Período 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:
public Period 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 Período basado en el período dado con el período solicitado agregado, y este 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.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to subtract two given periods static void addPeriod(Period p1, Period 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; Period p1 = Period.of(year, months, days); // Defining second period int year1 = 2; int months1 = 7; int days1 = 8; Period p2 = Period.of(year1, months1, days1); addPeriod(p1, p2); } }
P6Y18M18D
Programa 2 : El período puede ser negativo.
// Java code to show the function plus() // to subtract the two given periods import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to add two given periods static void addPeriod(Period p1, Period 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; Period p1 = Period.of(year1, months1, days1); // Defining first period int year = 4; int months = 11; int days = 10; Period p2 = Period.of(year, months, days); addPeriod(p1, p2); } }
P6Y18M18D
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#plus-java.time.temporal.TemporalAmount-