java.time.Year.compareTo(Year other)
方法將此年份與另一年度進行比較。
以下是java.time.Year.compareTo(Year other)
方法的宣告。
public int compareTo(Year other)
other
- 與另一年份比較,不是null
。比較器值,如果更小則為負,如果大於則為正值。
以下範例顯示了java.time.Year.compareTo(Year other)
方法的用法。
package com.yiibai;
import java.time.Year;
public class YearDemo {
public static void main(String[] args) {
Year date = Year.of(2005);
Year date1 = Year.of(2006);
System.out.println(date.compareTo(date1));
}
}
編譯並執行上面的程式,這將產生以下結果 -
-1