java.time.Period plus()方法

java.time.Period.plus(TemporalAmount amountToAdd)方法返回此Period的副本,并添加了指定的Period。

1 语法

public Period plus(TemporalAmount amountToAdd)

2 参数

amountToAdd:要添加的期间,正或负值,不为null。

3 返回值

一个基于此Period的期间,添加了指定的Period,而不是null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.Period plus()方法
 */
import java.time.Period;

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

      Period period = Period.of(1,5,2);
      System.out.println("Years: " + period.getYears() 
         + ", Months: " + period.getMonths()
         +", Days: " + period.getDays());   
      Period period1 = period.plus(Period.ofDays(5));
      System.out.println("Years: " + period1.getYears() 
         + ", Months: " + period1.getMonths()
         +", Days: " + period1.getDays());  

   }
}

输出结果为:

Years: 1, Months: 5, Days: 2
Years: 1, Months: 5, Days: 7

 

热门文章

优秀文章