equalsIgnoreCase() 方法

2023-12-21 00:48:37

equalsIgnoreCase() 方法

equalsIgnoreCase() 方法用于将字符串与指定的对象比较,不考虑大小写。

实例
equals() 会判断大小写区别,equalsIgnoreCase() 不会判断大小写区别:

public class Test {
    public static void main(String args[]) {
        String s1= new String("today");
        String s2= s1;
        String s3= new String("today");
        String s4= new String("TODAY");
        boolean retVal;
 
        str = s1.equals( s2);
        System.out.println("返回值 = " + str);
 
        str = s3.equals( s4);
        System.out.println("返回值 = " + str );
 
        str  = s1.equalsIgnoreCase( s4);
        System.out.println("返回值 = " + str );
    }
}

以上程序执行结果为:

返回值 = true
返回值 = false
返回值 = true

文章来源:https://blog.csdn.net/weixin_45817985/article/details/135092295
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。