LocalDateTime minusNanos(long nanos) example

Description

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

Syntax

minusNanos has the following syntax.


public LocalDateTime minusNanos(long nanos)

Example

The following example shows how to use minusNanos.


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

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset