El método plusYears() de la clase Period en Java se usa para agregar los años dados a este período. Esta función opera solo en AÑOS y no afecta MES y DÍAS.
Sintaxis:
public Period plusYears(long yearsToAdd)
Parámetros: este método acepta un solo parámetro yearsToAdd que es el número de años que se agregarán al período.
Valor devuelto: este método devuelve un período basado en el período proporcionado en la entrada, agregando el número de años especificado. No debe ser nulo.
Excepciones: lanza una 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 plusYears() // to add the number of years from given periods import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodClass { // Function to add years to given period static void addYears(Period p1, int yearstoAdd) { System.out.println(p1.plusYears(yearstoAdd)); } // 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); int yearstoAdd = 8; addYears(p1, yearstoAdd); } }
Producción:
P12Y11M10D
Programa 2 : El período puede ser negativo.
// Java code to show the function plusYears() // to add the number of years to given periods import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodClass { // Function to add years to given periods static void addYears(Period p1, int yearstoAdd) { System.out.println(p1.plusYears(yearstoAdd)); } // Driver Code public static void main(String[] args) { // Defining first period int year = -4; int months = -11; int days = 0; Period p1 = Period.of(year, months, days); int yearstoAdd = 8; addYears(p1, yearstoAdd); } }
Producción:
P4Y-11M
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#plusYears-long-