您好,登錄后才能下訂單哦!
java如何對字符串進行不等于判斷?相信很多新手小白還沒學會這個技能,通過這篇文章的總結,希望你能學會學會這個技能。以下資料是實現的步驟。。
語法
public boolean equals(Object anObject)
參數
anObject -- 與字符串進行比較的對象。
返回值
如果給定對象與字符串相等,則返回 true;否則返回 false。
實例
public class Test { public static void main(String args[]) { String Str1 = new String("runoob"); String Str2 = Str1; String Str3 = new String("runoob"); boolean retVal; retVal = Str1.equals( Str2 ); System.out.println("返回值 = " + retVal ); retVal = Str1.equals( Str3 ); System.out.println("返回值 = " + retVal ); } }
以上程序執行結果為:
返回值 = true
返回值 = true
看完這篇文章,你們學會java對字符串進行不等于判斷的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。