java.time.YearMonth equals()方法

java.time.Year.equals(YearMonth otherYearMonth)方法检查此YearMonth是否等于指定的YearMonth。

1 语法

public int equals(YearMonth otherYearMonth)

2 参数

otherYearMonth:另一个YearMonth,如果是null则返回false。

3 返回值

如果另一个YearMonth等于此年月,则返回true。

4 示例 

package com.yiidian;

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

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

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

输出结果为:

false

 

热门文章

优秀文章