java.time.OffsetDateTime plusNanos()方法

java.time.OffsetDateTime.plusNanos(long nanoseconds)方法返回此日期时间的副本,并添加指定的纳秒数。

1 语法

public OffsetDateTime plusNanos(long nanoseconds)

2 参数

nanoseconds:要添加的纳秒,可能是负数。

3 返回值

基于此日期时间加上纳秒的OffsetDateTime,不为null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.OffsetDateTime plusNanos()方法
 */
import java.time.OffsetDateTime;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {

      OffsetDateTime date = OffsetDateTime.parse("2017-02-03T10:15:30+01:00");
      System.out.println(date.plusNanos(20000));  
   }
}

输出结果为:

2017-02-03T10:15:30.000020+01:00

 

热门文章

优秀文章