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