LocalDate plusDays(long daysToAdd) example
Description
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;
// w ww . j av a 2 s .c o m
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.