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


Java MonthDay equals()用法及代码示例


Java中MonthDay类的equals()方法检查此month-day是否等于另一个month-day。

用法:

public boolean equals(Object obj)

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


返回值:如果等于其他时间,则该函数返回true。

以下示例程序旨在说明MonthDay.equals()方法:

示例1:

// 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

示例2:

// 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://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#equals-java.lang.Object-



相关用法


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