Period minusDays(long daysToSubtract) example
Description
Period minusDays(long daysToSubtract)
returns a copy of this period with the specified days subtracted.
Syntax
minusDays
has the following syntax.
public Period minusDays(long daysToSubtract)
Example
The following example shows how to use minusDays
.
import java.time.Period;
//from w w w . ja va 2 s. c om
public class Main {
public static void main(String[] args) {
Period p = Period.ofMonths(1);
Period l = p.minusDays(10);
System.out.println(l);
}
}
The code above generates the following result.