java.time.MonthDay.compareTo(MonthDay other)方法

2019-10-16 22:44:15

java.time.MonthDay.compareTo(MonthDay other)方法將此月-日與另一個月-日進行比較。

宣告

以下是java.time.MonthDay.compareTo(MonthDay other)方法的宣告。

public int compareTo(MonthDay other)

引數

  • other - 比較的其他月份日,不能為null

返回值

比較器值,如果小則為負,如果大則為正。

異常

  • NullPointerException - 另一個為null

範例

以下範例顯示了java.time.MonthDay.compareTo(MonthDay other)方法的用法。

package com.yiibai;

import java.time.MonthDay;

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

      MonthDay date = MonthDay.parse("--12-30");
      System.out.println(date);  
      MonthDay date1 = MonthDay.parse("--12-20");
      System.out.println(date1);  
      System.out.println(date1.compareTo(date));  
   }
}

編譯並執行上面的程式,這將產生以下結果 -

--12-30
--12-20
-10