java.time.Period between()方法
java.time.Period.between()方法获取表示两个LocalDate对象之间的Period。
1 语法
public static Period between(LocalDate startInclusive, LocalDate endExclusive)
2 参数
startInclusive:开始日期,包括,不为null。
endExclusive:结束日期,独占,非null。
3 返回值
一个句点,不是null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Period between()方法
*/
import java.time.LocalDate;
import java.time.Period;
public class PeriodDemo {
public static void main(String[] args) {
Period period = Period.between(LocalDate.ofYearDay(2017, 200),
LocalDate.ofYearDay(2017, 300));
System.out.println(period);
}
}
输出结果为:
P3M8D
热门文章
优秀文章