Java Date Time - OffsetDateTime plus(TemporalAmount amountToAdd) example








OffsetDateTime plus(TemporalAmount amountToAdd) returns a copy of this date-time with the specified amount added.

Syntax

plus has the following syntax.

public OffsetDateTime plus(TemporalAmount amountToAdd)

Example

The following example shows how to use plus.

import java.time.OffsetDateTime;
import java.time.Period;
/*ww w. j av  a  2  s  . c  om*/
public class Main {
  public static void main(String[] args) {
    OffsetDateTime o = OffsetDateTime.now();
    OffsetDateTime d =  o.plus(Period.ofDays(2));
    System.out.println(d);
  }
}

The code above generates the following result.