📜  Java中的 MonthDay equals() 方法及示例

📅  最后修改于: 2022-05-13 01:55:47.694000             🧑  作者: Mango

Java中的 MonthDay equals() 方法及示例

Java中MonthDay 类equals()方法检查这个月日是否等于另一个月日。

句法:

public boolean equals(Object obj)

参数:此方法接受一个参数obj ,该参数指定此月-日是否等于另一个月-日。

返回:如果这等于另一个时间,则该函数返回 true。

下面的程序说明了MonthDay.equals()方法:

方案一:

// Program to illustrate the equals() 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.equals(dt2));
    }
}
输出:
true

方案二:

// Program to illustrate the equals() 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.equals(dt2));
    }
}
输出:
false

参考: https: Java/time/MonthDay.html#equals-java.lang.Object-