Open In App

ChronoLocalDate plus(TemporalAmount) method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

plus(TemporalAmount) method of a ChronoLocalDate interface used to return a copy of this ChronoLocalDate with the specified amount added ChronoLocalDate.The amount is typically Period or Duration but may be any other type implementing the TemporalAmount interface.

Syntax:

public ChronoLocalDate plus(TemporalAmount amountToAdd)

Parameters: This method accepts one single parameter amountToAdd which is the amount to add, It should not be null.

Return value: This method returns ChronoLocalDate based on this date-time with the addition made.

Below programs illustrate the plus() method:

Program 1:




// Java program to demonstrate
// ChronoLocalDate.plus() method
  
import java.time.*;
import java.time.chrono.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ChronoLocalDate object
        ChronoLocalDate zonedlt
            = LocalDate.parse("2018-12-06");
  
        // add 100 Days to ChronoLocalDate
        ChronoLocalDate value
            = zonedlt.plus(Period.ofDays(100));
  
        // print result
        System.out.println("ChronoLocalDate after adding Days: "
                           + value);
    }
}


Output:

ChronoLocalDate after adding Days: 2019-03-16

References: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#plus-java.time.temporal.TemporalAmount-


Last Updated : 29 Apr, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads