Open In App

ChronoLocalDate plus(TemporalAmount) method in Java with Examples

Last Updated : 29 Apr, 2019
Comments
Improve
Suggest changes
Like Article
Like
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
// 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-

Next Article

Similar Reads