minus() method of a ChronoZonedDateTime interface used to Returns a copy of this date-time with the specified amount of unit subtracted.If it is not possible to subtract the amount, because the unit is not supported or for some other reason, an exception is thrown.
Syntax:
Java
default ChronoZonedDateTime minus(long amountToSubtract,
TemporalUnit unit)
Parameters: This method accepts two parameters:
- amountToSubtract: which is the amount of the unit to subtract to the result, may be negative
- unit: which is the unit of the amount to subtract.
- DateTimeException: if the subtraction cannot be made,
- UnsupportedTemporalTypeException: if the unit is not supported.
- ArithmeticException: if numeric overflow occurs.
// Java program to demonstrate
// ChronoZonedDateTime.minus() method
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.ChronoUnit;
public class GFG {
public static void main(String[] args)
{
// create a ChronoZonedDateTime object
ChronoZonedDateTime zonedlt
= ZonedDateTime
.parse(
"2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
// subtract 30 Months to ChronoZonedDateTime
ChronoZonedDateTime value
= zonedlt.minus(30, ChronoUnit.MONTHS);
// print result
System.out.println("ChronoZonedDateTime after"
+ " subtracting Months:\n "
+ value);
}
}
Output:
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#minus-long-java.time.temporal.TemporalUnit-ChronoZonedDateTime after subtracting Months: 2016-06-06T19:21:12.123+05:30[Asia/Calcutta]