Java中的 MonthDay compareTo() 方法及示例
Java中MonthDay 类的compareTo()方法将此月日与另一个月日进行比较。
句法:
public int compareTo(MonthDay other)
参数:此方法接受一个参数other ,该参数指定要比较的另一个月日,并且不为空。
返回:函数返回比较器值。如果它更小,它可以是负数,如果它更大,它可以是正数。
异常:如果另一个为空,该函数将抛出NullPointerException 。
下面的程序说明了MonthDay.compareTo()方法:
方案一:
// Program to illustrate the compareTo() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
MonthDay tm1 = MonthDay.parse("--12-06");
// Uses the function
LocalDate dt1 = tm1.atYear(2018);
// Parses the date
MonthDay tm2 = MonthDay.parse("--12-06");
// Uses the function
LocalDate dt2 = tm2.atYear(2018);
// Prints the date
System.out.println(dt1.compareTo(dt2));
}
}
输出:
0
方案二:
// Program to illustrate the compareTo() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
MonthDay tm1 = MonthDay.parse("--10-06");
// Uses the function
LocalDate dt1 = tm1.atYear(2018);
// Parses the date
MonthDay tm2 = MonthDay.parse("--12-06");
// Uses the function
LocalDate dt2 = tm2.atYear(2018);
// Prints the date
System.out.println(dt1.compareTo(dt2));
}
}
输出:
-2
方案 3:
// Program to illustrate the compareTo() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
MonthDay tm1 = MonthDay.parse("--10-06");
// Uses the function
LocalDate dt1 = tm1.atYear(2018);
// Parses the date
MonthDay tm2 = MonthDay.parse("--09-06");
// Uses the function
LocalDate dt2 = tm2.atYear(2018);
// Prints the date
System.out.println(dt1.compareTo(dt2));
}
}
输出:
1
参考: https: Java/time/MonthDay.html#compareTo-java.time.MonthDay-