- 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.OffsetTime.plusSeconds() 方法示例
描述
java.time.OffsetTime.plusSeconds(long seconds) 方法返回时间加上指定秒数的副本。
声明
以下是 java.time.OffsetTime.plusSeconds(long seconds) 方法的声明。
public OffsetTime plusSeconds(long seconds)
参数
seconds - 要添加的秒数,可以为负数。
返回值
根据该时间创建的 OffsetTime,其中添加了秒数,非空。
异常
DateTimeException - 如果结果超出了受支持的日期范围。
示例
以下示例展示了 java.time.OffsetTime.plusSeconds(long seconds) 方法的用法。
package com.tutorialspoint; import java.time.OffsetTime; public class OffsetTimeDemo { public static void main(String[] args) { OffsetTime date = OffsetTime.parse("10:15:30+01:00"); System.out.println(date.plusSeconds(20)); } }
让我们编译并运行上面的程序,这将产生以下结果 -
10:15:50+01:00
广告