YearMonth minus(long amountToSubtract, TemporalUnit unit)
returns a copy of this year-month with the specified amount subtracted.
minus
has the following syntax.
public YearMonth minus(long amountToSubtract, TemporalUnit unit)
The following example shows how to use minus
.
import java.time.YearMonth; import java.time.temporal.ChronoUnit; /*from www . j a va 2s . c om*/ public class Main { public static void main(String[] args) { YearMonth y = YearMonth.now(); YearMonth s = y.minus(12,ChronoUnit.YEARS); System.out.println(s); } }
The code above generates the following result.