当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Year compareTo()用法及代码示例


Java中Year类的compareTo()方法用于将Year对象与另一个Year对象进行比较。 Year对象的比较基于Year的值。

用法

public int compareTo(Year otherYear)

参数:此方法接受单个参数otherYear。是Year对象,它指定要与当前Year对象进行比较的年份。


返回值:它基于两个Year对象的比较返回一个整数比较器值。

以下程序说明了Java中Year的compareTo()方法:
示例1::在此程序中,当前Year对象的值小于第二年对象。因此,返回的值为-1。

// Program to illustrate the compareTo() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Creates first Year object 
        Year firstYear = Year.of(2017); 
  
        // Creates second year object 
        Year secondYear = Year.of(2018); 
  
        // Compare the two years and print the 
        // comparator value 
        System.out.println(firstYear.compareTo(secondYear)); 
    } 
}
输出:
-1

示例2::在此程序中,当前Year对象的值等于第二年对象。因此,返回的值为0。

// Program to illustrate the compareTo() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Creates first Year object 
        Year firstYear = Year.of(2018); 
  
        // Creates second year object 
        Year secondYear = Year.of(2018); 
  
        // Compare the two years and print the 
        // comparator value 
        System.out.println(firstYear.compareTo(secondYear)); 
    } 
}
输出:
0

参考: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#compareTo-java.time.Year-



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 Year compareTo() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。