java.time.Year until()方法
java.time.Year.until(Temporal endExclusive,TemporalUnit unit)方法根据指定的单位计算到另一个日期的时间量。
1 语法
public long until(Temporal endExclusive, TemporalUnit unit)
2 参数
endDateExclusive:结束日期(包含),转换为Year,而不是null。
unit:衡量总数的单位,而不是null。
3 返回值
此日期和结束日期之间的时间量。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Year until()方法
*/
import java.time.Year;
import java.time.temporal.ChronoUnit;
public class YearDemo {
public static void main(String[] args) {
Year date = Year.parse("2015");
Year date1 = Year.now();
System.out.println(date.until(date1, ChronoUnit.YEARS));
}
}
输出结果为:
1
热门文章
优秀文章