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

2019-10-16 22:36:31

java.time.Year.isAfter(Year other)方法檢查此年-月是否在指定年份之後。

宣告

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

public boolean isAfter(Year other)

引數

  • other- 比較的另一年,而不是null

返回值

如果此年份是在指定年份之後,則為true

範例

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

package com.yiibai;

import java.time.Year;

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

      Year date = Year.of(2016);
      Year date1 = Year.of(2017);
      System.out.println(date1.isAfter(date));  
   }
}

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

true