ZonedDateTime plusNanos() method in Java with Examples Last Updated : 10 Dec, 2018 Comments Improve Suggest changes Like Article Like Report plusNanos() method of a ZonedDateTime class used to add the number of nanoseconds in this ZonedDateTime and return a copy of ZonedDateTime after addition.This method works on the instant time-line and adding one nanosecond return the time-line of one nanosecond later. Note that this method is a different approach to that used by days, months and years. This instance is immutable and unaffected by this method call. Syntax: public ZonedDateTime plusNanos(long nanoseconds) Parameters: This method accepts a single parameter nanoseconds which represents the nanoseconds to add, It can be negative. Return value: This method returns a ZonedDateTime based on this date-time with the nanoseconds added. Exception: This method throws DateTimeException if the result exceeds the supported date range. Below programs illustrate the plusNanos() method: Program 1: Java // Java program to demonstrate // ZonedDateTime.plusNanos() method import java.time.*; public class GFG { public static void main(String[] args) { // create a ZonedDateTime object ZonedDateTime zoneddatetime = ZonedDateTime.parse( "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]"); // print instance System.out.println("ZonedDateTime before" + " adding nanoseconds: " + zoneddatetime); // add 30000000 nanoseconds ZonedDateTime returnvalue = zoneddatetime.plusNanos(30000000); // print result System.out.println("ZonedDateTime after " + " adding nanoseconds: " + returnvalue); } } Output: ZonedDateTime before adding nanoseconds: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta] ZonedDateTime after adding nanoseconds: 2018-12-06T19:21:12.153+05:30[Asia/Calcutta] Program 2: Java // Java program to demonstrate // ZonedDateTime.plusNanos() method import java.time.*; public class GFG { public static void main(String[] args) { // create a ZonedDateTime object ZonedDateTime zoneddatetime = ZonedDateTime.parse( "2018-10-25T23:12:31.123+02:00[Europe/Paris]"); // print instance System.out.println("ZonedDateTime before" + " adding nanoseconds: " + zoneddatetime); // add 5200000 nanoseconds ZonedDateTime returnvalue = zoneddatetime.plusNanos(5200000); // print result System.out.println("ZonedDateTime after " + " adding nanoseconds: " + returnvalue); } } Output: ZonedDateTime before adding nanoseconds: 2018-10-25T23:12:31.123+02:00[Europe/Paris] ZonedDateTime after adding nanoseconds: 2018-10-25T23:12:31.128200+02:00[Europe/Paris] Reference: https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#plusNanos(long) Comment A AmanSingh2210 Follow 0 Improve A AmanSingh2210 Follow 0 Improve Article Tags : Java Java-Functions Java-time package Java-ZonedDateTime Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings8 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java9 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface4 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like