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

2019-10-16 22:44:28

java.time.MonthDay.isAfter(MonthDay other)方法檢查此月-日是否在指定的月-日之後。

宣告

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

public boolean isAfter(MonthDay other)

引數

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

返回值

如果此月-日在指定的月-日之後,則為true

範例

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

package com.yiibai;

import java.time.MonthDay;

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

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

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

false