java.time.YearMonth.plusMonths() Method Example



Description

The java.time.YearMonth.plusMonths(long months) method returns a copy of this YearMonth with the specified months added.

Declaration

Following is the declaration for java.time.YearMonth.plusMonths(long months) method.

public YearMonth plusMonths(long months)

Parameters

months − the months to add, positive or negative.

Return Value

a YearMonth based on this YearMonth with the specified months added, not null.

Exception

ArithmeticException − if numeric overflow occurs.

Example

The following example shows the usage of java.time.YearMonth.plusMonths(long months) method.

package com.tutorialspoint;

import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth date = YearMonth.parse("2017-12");
      YearMonth date1 = date.plusMonths(10);
      System.out.println(date1);   
   }
}

Let us compile and run the above program, this will produce the following result −

2018-10
Advertisements