java.time.Instant.with(TemporalAdjuster adjuster)
方法返回此瞬間的調整副本。
以下是java.time.Instant.with(TemporalAdjuster adjuster)
方法的宣告。
public Instant with(TemporalAdjuster adjuster)
adjuster
- 要使用的調整器,而不是null
。基於此的瞬間進行調整,而不是null
。
DateTimeException
- 如果無法進行調整。ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.Instant.with(TemporalAdjuster adjuster)
方法的用法。
package com.yiibai;
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