Open In App

YearMonth plus(TemporalAmount) method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

The plus(TemporalAmount) method of YearMonth class is used to return a copy of this YearMonth after adding the specified amount of TemporalAmount to this YearMonth object. An exception is thrown, If the specified unit cannot be added to YearMonth. The TemporalAmount passed is created from the Period object. This instance is immutable and unaffected by this method call.

Syntax: 

public YearMonth plus(TemporalAmount amountToadd)

Parameters: This method accepts only one parameter TemporalAmount which represents the amount to add to YearMonth object.

Return Value: This method returns a YearMonth based on this YearMonth with the specified amount added.

Exception: This method throws following Exceptions:  

  • DateTimeException – This exception is thrown if the addition cannot be made.
  • ArithmeticException – This exception is thrown if numeric overflow occurs.

Below programs illustrate the plus(TemporalAmount amountToadd) method:

Program 1:  

Java




// Java program to demonstrate
// YearMonth.plus(TemporalAmount amountToadd) method
 
import java.time.*;
import java.time.temporal.*;
 
public class GFG {
    public static void main(String[] args)
    {
        // create a YearMonth object
        YearMonth thisYearMonth = YearMonth.of(2019, 11);
 
        // print instance
        System.out.println("YearMonth :"
                           + thisYearMonth);
 
        // create temporalAmount object from period class
        // passing temporalAmount to
        // plus() method
        YearMonth value
            = thisYearMonth.plus(
                Period.ofYears(120));
 
        // print result
        System.out.println("Value after addition: "
                           + value);
    }
}


Output: 

YearMonth :2019-11
Value after addition: 2139-11

 

Program 2:  

Java




// Java program to demonstrate
// YearMonth.plus(TemporalAmount amountToadd) method
 
import java.time.*;
import java.time.temporal.*;
 
public class GFG {
    public static void main(String[] args)
    {
        // create a YearMonth object
        YearMonth thisYearMonth = YearMonth.of(2022, 11);
 
        // print instance
        System.out.println("YearMonth :"
                           + thisYearMonth);
 
        // create temporalAmount object from period class
        // passing temporalAmount to
        // plus() method
        YearMonth value
            = thisYearMonth.plus(
                Period.ofMonths(200));
 
        // print result
        System.out.println("Value after addition: "
                           + value);
    }
}


Output: 

YearMonth :2022-11
Value after addition: 2039-07

 

References: 
https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#plus(java.time.temporal.TemporalAmount)
 



Last Updated : 14 Sep, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads