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



说明

java.time.ZonedDateTime.plusYears(long yearsToAdd) 方法会将指定的年数添加到当前日期时间,然后返回该日期时间的副本。

声明

以下是 java.time.ZonedDateTime.plusYears(long yearsToAdd) 方法的声明。

public ZonedDateTime plusYears(long yearsToAdd)

参数

yearsToAdd − 要添加的年数(可以为负数)。

返回值

一个基于当前日期时间、添加了年数的 ZonedDateTime,不为 null。

异常

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

示例

以下示例演示了如何使用 java.time.ZonedDateTime.plusYears(long yearsToAdd) 方法。

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.plusYears(2));  
   }
}

让我们编译并运行上面的程序,将会生成以下结果 −

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