LocalDate minus(TemporalAmount amountToSubtract)
returns a
copy of this date with the specified amount subtracted.
minus
has the following syntax.
public LocalDate minus(TemporalAmount amountToSubtract)
The following example shows how to use minus
.
import java.time.LocalDate; import java.time.Period; /*from w w w. j a va 2 s .c om*/ public class Main { public static void main(String[] args) { LocalDate a = LocalDate.of(2014, 6, 30); LocalDate b = a.minus(Period.ofDays(100)); System.out.println(b); } }
The code above generates the following result.