java.time.ZonedDateTime.plusDays() 方法示例



说明

java.time.ZonedDateTime.plusDays(long daysToAdd) 方法返回带指定天数的此日期时间的副本。

声明

以下是对 java.time.ZonedDateTime.plusDays(long daysToAdd) 方法的声明。

public ZonedDateTime plusDays(long daysToAdd)

参数

daysToAdd − 要添加的天数,可以为负数。

返回值

一个基于此日期时间、添加了天数且不为 null 的 ZonedDateTime。

异常

DateTimeException − 如果结果超出支持的日期范围。

示例

以下示例展示了 java.time.ZonedDateTime.plusDays(long daysToAdd) 方法的用法。

package com.tutorialspoint;

import java.time.ZonedDateTime;

public class ZonedDateTimeDemo {
   public static void main(String[] args) {

      ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
      System.out.println(date.plusDays(2));  
   }
}

让我们编译并运行上述程序,会得到以下结果 −

2017-03-30T12:25:38.492+05:30[Asia/Calcutta]
广告