Java Date Time - Instant plus(TemporalAmount amountToAdd) example








Instant plus(TemporalAmount amountToAdd) returns a copy of this instant with the specified amount added.

Syntax

plus has the following syntax.

public Instant plus(TemporalAmount amountToAdd)

Example

The following example shows how to use plus.

import java.time.Duration;
import java.time.Instant;
/*w  ww.  ja  va2s  . c  o  m*/
public class Main {
  public static void main(String[] args) {
    Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
    instant = instant.plus(Duration.ofDays(100));
    System.out.println(instant);
 
  }
}

The code above generates the following result.