- java.time 包类
- java.time - 首页
- java.time - 时钟
- java.time - 时间段
- java.time - Instant
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - Period
- java.time - Year
- java.time - YearMonth
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time 包枚举
- java.time - Month
- java.time 有用资源
- java.time - 讨论
java.time.Instant.plus() 方法示例
说明
java.time.Instant.plus(TemporalAmount amountToAdd) 方法返回已添加指定时间量此 instant 的副本。
声明
以下是 java.time.Instant.plus(TemporalAmount amountToAdd) 方法的声明。
public Instant plus(TemporalAmount amountToAdd)
Instant plus(TemporalAmount amountToAdd)
参数
amountToAdd - 要添加的时间量,非 null。
返回值
一个 Instant,基于此 instant,加上指定的时间量,非 null。
异常
DateTimeException - 如果无法进行添加。
ArithmeticException - 如果出现数字上溢。
示例
package com.tutorialspoint; import java.time.Instant; import java.time.Duration; public class InstantDemo { public static void main(String[] args) { Instant instant = Instant.parse("2017-02-03T10:37:30.00Z"); Duration duration = Duration.ofHours(5); Instant result = instant.plus(duration); System.out.println(result); } }
直接观看示例
2017-02-03T15:37:30Z
打印页面
广告