- 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 - 时间段
- java.time - 年
- java.time - 年月
- java.time - ZonedDateTime
- java.time - 区域 ID
- java.time - 时区偏移量
- java.time 包枚举
- java.time - 月份
- java.time 有用资源
- java.time - 讨论
java.time.LocalDateTime.plusSeconds() 方法示例
说明
java.time.LocalDateTime.plusSeconds(long seconds) 方法返回添加了指定秒数的此日期时间副本。
声明
以下是 java.time.LocalDateTime.plusSeconds(long seconds) 方法的声明。
public LocalDateTime plusSeconds(long seconds)
参数
seconds - 要添加的秒数,可以为负数。
返回值
此日期时间基础上的、添加了秒数的 LocalDateTime,非空。
异常
DateTimeException - 如果结果超出了支持的日期范围。
示例
以下示例演示了 java.time.LocalDateTime.plusSeconds(long seconds) 方法的用法。
package com.tutorialspoint; import java.time.LocalDateTime; public class LocalDateTimeDemo { public static void main(String[] args) { LocalDateTime date = LocalDateTime.parse("2017-02-03T10:15:30"); System.out.println(date.plusSeconds(20)); } }
让我们编译并运行上述程序,这将生成以下结果 -
2017-02-03T10:15:50
广告