Open In App

Period plusMonths() method in Java with Examples

Last Updated : 27 Nov, 2018
Improve
Improve
Like Article
Like
Save
Share
Report

The plusMonths() method of Period class in Java is used to add the specified months to this current period. This functions operates only on MONTHS and does not affect YEARS and DAYS.

Syntax:

public Period plusMonths(long monthsToAdd)

Parameters: This method accepts a single parameter monthsToAdd which is the number of months to be added to the period.

Return Value: This method returns a Period based on provided period in the input adding the specified number of months. It must not be null.

Exceptions: This method throws an ArithmeticException if numeric overflow occurs.

Below program illustrates the above method:

Program 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);
    }
}


Output:

P-4Y-19M

Program 2: Months to be added can be negative.




// 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);
    }
}


Output:

P4Y19M10D

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#plusMonths-long-



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads