Java Date Time - LocalDateTime plusNanos(long nanos) example








LocalDateTime plusNanos(long nanos) returns a copy of this LocalDateTime with the specified period in nanoseconds added.

Syntax

plusNanos has the following syntax.

public LocalDateTime plusNanos(long nanos)

Example

The following example shows how to use plusNanos.

import java.time.LocalDateTime;
/*  www.  j  av a 2 s.co  m*/
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 00);
    
    LocalDateTime t = a.plusNanos(100);
    
    System.out.println(t);
  }
}

The code above generates the following result.