扫描二维码下载沐宇APP

沐宇

微信扫码使用沐宇小程序

沐宇

濡備綍閲嶅啓equalsignorecase鏂规硶

扬州沐宇科技
2024-06-19 13:39:03
equalsignorecase

瑕侀噸鍐檈qualsIgnoreCase鏂规硶锛岄鍏堥渶瑕佸垱寤轰竴涓柊鐨勬柟娉曪紝鑰屼笉鏄噸鍐橲tring绫讳腑鐨別qualsIgnoreCase鏂规硶銆備互涓嬫槸涓€涓ず渚嬶細

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

鍦ㄤ笂闈㈢殑渚嬪瓙涓紝鎴戜滑鍒涘缓浜嗕竴涓嚜瀹氫箟鐨凜ustomString绫伙紝骞堕噸鍐欎簡equals鏂规硶锛屼互渚垮拷鐣ュぇ灏忓啓姣旇緝涓や釜CustomString瀵硅薄鐨勫€笺€傚湪main鏂规硶涓紝鎴戜滑鍒涘缓浜嗕袱涓狢ustomString瀵硅薄锛屽苟璋冪敤equals鏂规硶杩涜姣旇緝銆傛渶缁堣緭鍑虹粨鏋滀负true锛岃〃绀轰袱涓璞$殑鍊煎湪蹇界暐澶у皬鍐欑殑鎯呭喌涓嬫槸鐩哥瓑鐨勩€?/p>

扫码添加客服微信