java.time.Instant.plusMillis() 方法示例



描述

java.time.Instant.plusMillis(long millisToAdd) 方法添加指定毫秒数后返回此即时时间副本。

声明

以下是 java.time.Instant.plusMillis(long millisToAdd) 方法的声明。

public Instant plusMillis(long millisToAdd)

参数

millisToAdd − 要添加的毫秒数,为正或负。

返回值

基于此即时时间且添加了指定毫秒数的即时时间,不能为空。

异常

  • DateTimeException − 如果结果超过最大或最小即时时间。

  • ArithmeticException − 如果发生数字溢出。

示例

以下示例展示了 java.time.Instant.plusMillis(long millisToAdd) 方法的用法。

package com.tutorialspoint;

import java.time.Instant;

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

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
      Instant result = instant.plusMillis(10000);
      System.out.println(result);  
   }
}

接下来编译并运行上述程序,将生成以下结果 −

2017-02-03T10:37:40Z
广告