java.time.Year isBefore()方法
java.time.Year.isBefore(Year other)方法检查此年份是否在指定年份之前。
1 语法
public boolean isBefore(Year other)
2 参数
other:与另一年份进行比较,不能为null。
3 返回值
如果此年份在指定年份之前,则为true。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Year isBefore()方法
*/
import java.time.Year;
public class YearDemo {
public static void main(String[] args) {
Year date = Year.of(2016);
Year date1 = Year.of(2017);
System.out.println(date1.isBefore(date));
}
}
输出结果为:
false
热门文章
优秀文章