Java Date Time - OffsetDateTime minusNanos(long nanos) example








OffsetDateTime minusNanos(long nanos) returns a copy of this OffsetDateTime with the specified period in nanoseconds subtracted.

Syntax

minusNanos has the following syntax.

public OffsetDateTime minusNanos(long nanos)

Example

The following example shows how to use minusNanos.

import java.time.OffsetDateTime;

public class Main {
  public static void main(String[] args) {
    OffsetDateTime o = OffsetDateTime.now();
    OffsetDateTime d =  o.minusNanos(1200);
    System.out.println(d);
  }
}

The code above generates the following result.