Monday, July 27, 2026
HomeLanguagesJavaChronoLocalDateTime plus(long, TemporalUnit) in Java with Examples

ChronoLocalDateTime plus(long, TemporalUnit) in Java with Examples

The plus() method of a ChronoLocalDateTime interface is used to return a copy of this ChronoLocalDateTime 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 ChronoLocalDateTime 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 negative and unit which is the unit of the amount to add, not null.

Return value: This method returns ChronoLocalDateTime based on this ChronoLocalDateTime with the specified amount added.

Exception: This method throws following Exceptions:  

  • DateTimeException – if the addition cannot be made
  • ArithmeticException – if numeric overflow occurs

Below programs illustrate the plus() method: 

Program 1:  

Java




// Java program to demonstrate
// ChronoLocalDateTime.plus() method
 
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.ChronoUnit;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get the ChronoLocalDateTime instance
        ChronoLocalDateTime ldt
            = LocalDateTime
                  .parse("2019-12-31T19:15:30");
 
        // Get the String representation of this ChronoLocalDateTime
        System.out.println("Original ChronoLocalDateTime: "
                           + ldt.toString());
 
        // add 200 DAYS to ChronoLocalDateTime
        ChronoLocalDateTime value
            = ldt.plus(200, ChronoUnit.DAYS);
 
        // print result
        System.out.println("ChronoLocalDateTime after adding DAYS: "
                           + value);
    }
}


Output: 

Original ChronoLocalDateTime: 2019-12-31T19:15:30
ChronoLocalDateTime after adding DAYS: 2020-07-18T19:15:30

 

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

3 COMMENTS

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6972 POSTS0 COMMENTS