java.time.YearMonth compareTo()方法

java.time.Year.compareTo(YearMonth other)方法将此年份与另一个月份进行比较。

1 语法

public int compareTo(YearMonth other)

2 参数

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

3 返回值

比较器值,如果小则返回负值,如果大则返回正值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.YearMonth compareTo()方法
 */
import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth date = YearMonth.of(2005,11);
      YearMonth date1 = YearMonth.of(2006,11);
      System.out.println(date.compareTo(date1));
   }
}

输出结果为:

-1

 

热门文章

优秀文章