Instant plusSeconds(long secondsToAdd) example
Description
Instant plusSeconds(long secondsToAdd)
returns a
copy of this instant with the specified duration in seconds added.
Syntax
plusSeconds
has the following syntax.
public Instant plusSeconds(long secondsToAdd)
Example
The following example shows how to use plusSeconds
.
import java.time.Instant;
/*from ww w. ja v a2s .c om*/
public class Main {
public static void main(String[] args) {
Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
instant = instant.plusSeconds(10000);
System.out.println(instant);
}
}
The code above generates the following result.