溫馨提示×

如何重寫equalsignorecase方法

小樊
81
2024-06-19 13:39:03
欄目: 編程語言

要重寫equalsIgnoreCase方法,首先需要創(chuàng)建一個新的方法,而不是重寫String類中的equalsIgnoreCase方法。以下是一個示例:

public class CustomString {

    private String value;

    public CustomString(String value) {
        this.value = value;
    }

    @Override
    public boolean equals(Object obj) {
        if (obj instanceof CustomString) {
            CustomString other = (CustomString) obj;
            return this.value.equalsIgnoreCase(other.value);
        }
        return false;
    }

    public static void main(String[] args) {
        CustomString str1 = new CustomString("Hello");
        CustomString str2 = new CustomString("hello");

        System.out.println(str1.equals(str2)); // Output: true
    }
}

在上面的例子中,我們創(chuàng)建了一個自定義的CustomString類,并重寫了equals方法,以便忽略大小寫比較兩個CustomString對象的值。在main方法中,我們創(chuàng)建了兩個CustomString對象,并調(diào)用equals方法進(jìn)行比較。最終輸出結(jié)果為true,表示兩個對象的值在忽略大小寫的情況下是相等的。

0