Java Date Time - LocalDate plusDays(long daysToAdd) example








LocalDate plusDays(long daysToAdd) returns a copy of this LocalDate with the specified number of days added.

Syntax

plusDays has the following syntax.

public LocalDate plusDays(long daysToAdd)

Example

The following example shows how to use plusDays.

import java.time.LocalDate;

public class Main {
  public static void main(String[] args) {
    LocalDate a = LocalDate.of(2014, 6, 30);
    LocalDate b = a.plusDays(100);
    System.out.println(b);
  }
}

The code above generates the following result.