ChronoZonedDateTime plus(long, TemporalUnit) method in Java with Examples Last Updated : 13 Aug, 2021 Comments Improve Suggest changes Like Article Like Report plus() method of a ChronoZonedDateTime class is used to Returns a copy of this date-time with the specified amount of unit added.If it is not possible to add the amount, because the unit is not supported or for some other reason, an exception is thrown. Syntax: default ChronoZonedDateTime plus(long amountToSubtract, TemporalUnit unit) Parameters: This method accepts two parameters: amountToSubtract: which is the amount of the unit to add to the result, may be negativeunit: which is the unit of the amount to add. Return value: This method returns ChronoZonedDateTime based on this date-time with the specified amount added. Exception: This method throws following Exceptions: DateTimeException: if the addition cannot be made,UnsupportedTemporalTypeException: if the unit is not supported.ArithmeticException: if numeric overflow occurs. Below programs illustrate the plus() method: Program 1: Java // Java program to demonstrate // ChronoZonedDateTime.plus() 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]"); // add 30 Months to ChronoZonedDateTime ChronoZonedDateTime value = zonedlt.plus(30, ChronoUnit.MONTHS); // print result System.out.println("ChronoZonedDateTime after" + " adding Months:\n " + value); } } Output: ChronoZonedDateTime after adding Months: 2021-06-06T19:21:12.123+05:30[Asia/Calcutta] Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#plus-long-java.time.temporal.TemporalUnit- Comment More infoAdvertise with us Next Article ChronoZonedDateTime plus(long, TemporalUnit) method in Java with Examples S ShubhamMaurya3 Follow Improve Article Tags : Misc Java Java-Functions Java-ChronoZonedDateTime Java-Time-Chrono package +1 More Practice Tags : JavaMisc Similar Reads ChronoZonedDateTime minus(long, TemporalUnit) method in Java with Examples 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 ChronoZonedDateTim 1 min read ChronoZonedDateTime plus(TemporalAmount) method in Java with Examples plus() method of a ChronoZonedDateTime class used to returns a copy of this date-time with the specified amount added to date-time. The amount is typically Period or Duration but may be any other type implementing the TemporalAmount interface. Syntax: public ChronoZonedDateTime plus(TemporalAmount a 1 min read ChronoLocalDate plus(long, TemporalUnit) method in Java with Examples plus(long, TemporalUnit) method of a ChronoLocalDate interface used to return a copy of this ChronoLocalDate with the specified amount of unit added to ChronoLocalDate.If it is not possible to add the amount, because the unit is not supported or for some other reason, an exception is thrown.This ins 1 min read ChronoLocalDateTime minus(long, TemporalUnit) method in Java with Examples The minus() method of a ChronoLocalDateTime interface is used to return a copy of this ChronoLocalDateTime 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 C 2 min read ChronoZonedDateTime with(TemporalField, long) method in Java with Examples The with(TemporalField field, long newValue) method of the ChronoZonedDateTime interface is used to set the specified field of ChronoZonedDateTime to a new value and returns the copy of new time. This method can be used to change any supported field, such as year, day, month, hour, minute or second. 2 min read Like