Java 教程
equalsIgnoreCase() 方法用于將字符串與指定的對象比較,不考慮大小寫。
public boolean equalsIgnoreCase(String anotherString)
anObject -- 與字符串進(jìn)行比較的對象。
如果給定對象與字符串相等,則返回 true;否則返回 false。
public class Test { ????public static void main(String args[]) { ????????String Str1 = new String("json"); ????????String Str2 = Str1; ????????String Str3 = new String("json"); ????????String Str4 = new String("JSON"); ????????boolean retVal; ????????retVal = Str1.equals( Str2 ); ????????System.out.println("返回值 = " + retVal ); ????????retVal = Str3.equals( Str4); ????????System.out.println("返回值 = " + retVal ); ????????retVal = Str1.equalsIgnoreCase( Str4 ); ????????System.out.println("返回值 = " + retVal ); ????} }
以上程序執(zhí)行結(jié)果為:
返回值 = true 返回值 = false 返回值 = true