java.time.MonthDay.compareTo() 方法示例



说明

java.time.MonthDay.compareTo(MonthDay other) 方法将此月日与另一个月日进行比较。

声明

以下是 java.time.MonthDay.compareTo(MonthDay other) 方法的声明。

public int compareTo(MonthDay other)

public int compareTo(MonthDay other)

参数

other - 要比较的另一个月日,不能为空。

返回值

比较器值,如果较小,则为负数;如果较大,则为正数。

异常

NullPointerException - 其他为 null。

示例

package com.tutorialspoint;

import java.time.MonthDay;

public class MonthDayDemo {
   public static void main(String[] args) {
      
      MonthDay date = MonthDay.parse("--12-30");
      System.out.println(date);  
      MonthDay date1 = MonthDay.parse("--12-20");
      System.out.println(date1);  
      System.out.println(date1.compareTo(date));  
   }
}

实时演示

--12-30
--12-20
-10
打印页面