Open In App

ChronoZonedDateTime minus(long, TemporalUnit) method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

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:

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.

Return value: This method returns ChronoZonedDateTime based on this date-time with the specified amount subtracted.

Exception: This method throws following Exceptions:

  • DateTimeException: if the subtraction cannot be made,
  • UnsupportedTemporalTypeException: if the unit is not supported.
  • ArithmeticException: if numeric overflow occurs.

Below programs illustrate the minus() method:

Program 1:




// 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:

ChronoZonedDateTime after subtracting Months:
 2016-06-06T19:21:12.123+05:30[Asia/Calcutta]

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#minus-long-java.time.temporal.TemporalUnit-


Last Updated : 29 May, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads