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