java.time.Year.compareTo()方法

2019-10-16 22:36:21

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