Java Date Time - Instant minusNanos(long nanosToSubtract) example








Instant minusNanos(long nanosToSubtract) returns a copy of this instant with the specified duration in nanoseconds subtracted.

Syntax

minusNanos has the following syntax.

public Instant minusNanos(long nanosToSubtract)

Example

The following example shows how to use minusNanos.

import java.time.Instant;
//from   w w w.j av  a 2 s  .  c  o m
public class Main {
  public static void main(String[] args) {
    Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
    instant = instant.minusNanos(10000);
    System.out.println(instant);
 
  }
}

The code above generates the following result.