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