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



描述

java.time.Instant.with(TemporalAdjuster adjuster) 方法返回经过调整的此时间的副本。

声明

以下是 java.time.Instant.with(TemporalAdjuster adjuster) 方法的声明。

public Instant with(TemporalAdjuster adjuster)

参数

adjuster - 要使用的调整器,不能为空。

返回值

根据此时间和所做调整生成的 Instant,不能为空。

异常

  • DateTimeException - 如果无法进行调整。

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

示例

以下示例显示了 java.time.Instant.with(TemporalAdjuster adjuster) 方法的使用。

package com.tutorialspoint;

import java.time.Instant;

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

      Instant instant = Instant.parse("2017-12-03T10:15:30.00Z");
      Instant instant1 = Instant.now();
      Instant result = instant.with(instant1);
      System.out.println(result);
   }
}

让我们编译并运行上述程序,这将生成以下结果 -

2017-03-15T11:06:19.656Z
广告