VOOZH about

URL: https://www.geeksforgeeks.org/java/localdate-plusdays-method-in-java-with-examples/

⇱ LocalDate plusDays() Method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

LocalDate plusDays() Method in Java with Examples

Last Updated : 30 Apr, 2019
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 plusDays(long daysToAdd)
Parameters: This method accepts a single parameter daysToAdd which represents the days to add, may be negative. Return Value: This method returns a LocalDate based on this date with the days added, not null. Exception: This method throws DateTimeException if the result exceeds the supported date range. Below programs illustrate the plusDays() method: Program 1:
Output:
LocalDate before adding days: 2018-11-13
LocalDate after adding days: 2018-11-18
Program 2:
Output:
LocalDate before adding days: 2018-12-24
LocalDate after adding days: 2019-01-08
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#plusDays(long)
Comment