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
广告