jdk源碼系列:String判斷兩個字符串是否相等以及忽略大小寫相等的實現

  源碼以下:java 核心思路:取到每個字符,比較若是所有相等則返回truethis public boolean equals(Object anObject){ if(this==anObject){ return true; } if(anObject instanceof String){ String anotherString=(String)anObject
相關文章
相關標籤/搜索