java.time.YearMonth isBefore()方法

java.time.Year.isBefore(YearMonth other)方法检查此年月是否在指定的年月之前。

1 语法

public boolean isBefore(YearMonth other)

2 参数

other:与之比较的另一个年月,而不是null。

3 返回值

如果此年月在指定的年月之前,则为true。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.YearMonth isBefore()方法
 */
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.isBefore(date));  
   }
}

输出结果为:

false

 

热门文章

优秀文章