El método plusMonths() de la clase Período en Java se usa para agregar los meses especificados a este período actual. Esta función opera solo en MESES y no afecta AÑOS y DÍAS.
Sintaxis:
public Period plusMonths(long monthsToAdd)
Parámetros: este método acepta un solo parámetro monthsToAdd que es el número de meses que se agregarán al período.
Valor de retorno: este método devuelve un período basado en el período proporcionado en la entrada, agregando el número de meses especificado. No debe ser nulo.
Excepciones: este método genera una ArithmeticException si se produce un desbordamiento numérico.
El siguiente programa ilustra el método anterior:
Programa 1:
// Java code to show the function plusMonths() // to add the number of months to given periods import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodClass { // Function to add months to given periods static void addMonths(Period p1, int monthstoAdd) { System.out.println(p1.plusMonths(monthstoAdd)); } // 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 monthstoAdd = -8; addMonths(p1, monthstoAdd); } }
P-4Y-19M
Programa 2 : Los meses a añadir pueden ser negativos.
// Java code to show the function plusMonths() // to add the number of months from given periods import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodClass { // Function to add months to given period static void addMonths(Period p1, int monthstoAdd) { System.out.println(p1.plusMonths(monthstoAdd)); } // 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 monthstoAdd = 8; addMonths(p1, monthstoAdd); } }
P4Y19M10D
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#plusMonths-long-