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