java.time.ZonedDateTime plusYears()方法

java.time.ZonedDateTime.plusYears(long yearsToAdd)方法返回此日期时间并添加了指定的年份的副本。

1 语法

public ZonedDateTime plusYears(long yearsToAdd)

2 参数

yearsToAdd:添加的年份,可能是负值。

3 返回值

基于此日期时间添加年份的ZonedDateTime,而不是null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.ZonedDateTime plusYears()方法
 */
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]

 

热门文章

优秀文章