LocalDate plus() method in Java with Examples Last Updated : 18 Dec, 2018 Comments Improve Suggest changes Like Article Like Report In LocalDate class, there are two types of plus() method depending upon the parameters passed to it. plus(long amountToAdd, TemporalUnit unit) plus() method of a LocalDate class used to return a copy of this LocalDate with the specified amount of unit added to LocalDate.If it is not possible to add the amount, because the unit is not supported or for some other reason, an exception is thrown.This instance is immutable and unaffected by this method call. Syntax: public LocalDate plus(long amountToAdd, TemporalUnit unit) Parameters: This method accepts two parameters: amountToAdd: which is the amount of the unit to add to the result, may be negative unit: which is the unit of the amount to add. Return value: This method returns LocalDate based on this date-time with the specified amount added. Below programs illustrate the plus() method: Program 1: Java // Java program to demonstrate // LocalDate.plus() method import java.time.*; import java.time.temporal.ChronoUnit; public class GFG { public static void main(String[] args) { // create a LocalDate object LocalDate zonedlt = LocalDate.parse("2018-12-06"); // add 300 Months to LocalDate LocalDate value = zonedlt.plus(300, ChronoUnit.MONTHS); // print result System.out.println("LocalDate after adding Months : " + value); } } Output: LocalDate after adding Months : 2043-12-06 plus(TemporalAmount amountToAdd) plus() method of a LocalDate class used to return a copy of this LocalDate with the specified amount added LocalDate.The amount is typically Period or Duration but may be any other type implementing the TemporalAmount interface. Syntax: public LocalDate 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 LocalDate based on this date-time with the addition made. Below programs illustrate the plus() method: Program 1: Java // Java program to demonstrate // LocalDate.plus() method import java.time.*; public class GFG { public static void main(String[] args) { // create a LocalDate object LocalDate zonedlt = LocalDate.parse("2018-12-06"); // add 100 Days to LocalDate LocalDate value = zonedlt.plus(Period.ofDays(100)); // print result System.out.println("LocalDate after adding Days: " + value); } } Output: LocalDate after adding Days: 2019-03-16 Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#plus(java.time.temporal.TemporalAmount) https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#plus(long, java.time.temporal.TemporalUnit) Comment More infoAdvertise with us Next Article LocalDate plusYears() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions Java-time package Java-LocalDate Practice Tags : Java Similar Reads LocalDate plusDays() Method in Java with Examples The plusDays() method of a LocalDate class in Java is used to add the number of specified day in this LocalDate and return a copy of LocalDate. For example, 2018-12-31 plus one day would result in 2019-01-01. This instance is immutable and unaffected by this method call. Syntax: public LocalDate plu 2 min read LocalDateTime plus() method in Java with Examples In LocalDateTime class, there are two types of plus() method depending upon the parameters passed to it. plus(long amountToAdd, TemporalUnit unit) plus() method of a LocalDateTime class used to return a copy of this LocalDateTime with the specified amount of unit added.If it is not possible to add t 2 min read LocalTime plus() method in Java with Examples In LocalTime class, there are two types of plus() method depending upon the parameters passed to it. plus(long amountToAdd, TemporalUnit unit) plus() method of a LocalTime class used to return a copy of this LocalTime with the specified amount of unit added.If it is not possible to add the amount, b 2 min read LocalDate plusYears() method in Java with Examples The plusYears() method of LocalDate class in Java is used to add the number of specified years in this LocalDate and return a copy of LocalDate. This method adds the years field in the following steps: Add the years to the year field. Check if the date after adding years is valid or not. If date is 2 min read LocalDate plusWeeks() method in Java with Examples The plusWeeks() method of LocalDate class in Java is used to add the number of specified week in this LocalDate and return a copy of LocalDate.For example, 2018-12-24 plus one week would result in 2018-12-31. This instance is immutable and unaffected by this method call. Syntax: public LocalDate plu 2 min read LocalDate minus() method in Java with Examples In LocalDate class, there are two types of minus() method depending upon the parameters passed to it. minus(long amountTosubtract, TemporalUnit unit) minus() method of a LocalDate class used to Returns a copy of this LocalDate with the specified amount of unit subtracted to LocalDate.If it is not po 2 min read Like