- java.time 包中的类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - 时间戳
- java.time - 本地日期
- java.time - 本地日期时间
- java.time - 本地时间
- java.time - 月日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 期间
- java.time - 年
- java.time - 年月
- java.time - 带时区日期时间
- java.time - 时区 ID
- java.time - 时区偏移量
- java.time 包中的枚举
- java.time - 月
- java.time 实用资源
- java.time - 讨论
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
广告