String类的equals是如何进行字符串比较的

 我来答
ijava学习网
2018-07-16 · 国内最优秀java资源共享平台
ijava学习网
国内最优秀的java免费资源共享及学习平台,专注从实战中学习与成长。主要包括教程、经验分享、知识、资讯、工具、手册、视频及各种资源下载。
向TA提问
展开全部

1.equals方法的定义:

2.案例

public static void main(String[] args) {
String    a="aaaa";
String    b="bbb";
String    d="aaaa";

boolean c = a.equals(b);
System.out.println("c:"+c);
boolean e = a.equals(d);
System.out.println("e:"+e );



}

dafeiyu
2018-07-17 · 听君歌一曲,琵琶系心弦
dafeiyu
采纳数:75 获赞数:3543

向TA提问 私信TA
展开全部

String 的 equal是覆盖object类的

这是object类的equal方法

/* @param   obj   the reference object with which to compare.
* @return  {@code true} if this object is the same as the obj
*          argument; {@code false} otherwise.
* @see     #hashCode()
* @see     java.util.HashMap
*/
public boolean equals(Object obj) {
    return (this == obj);
}

再来看看String类中的equals方法是如何覆盖以上方法的:

/**
 * Compares this string to the specified object.  The result is {@code
 * true} if and only if the argument is not {@code null} and is a {@code
 * String} object that represents the same sequence of characters as this
 * object.
 *
 * @param  anObject
 *         The object to compare this {@code String} against
 *
 * @return  {@code true} if the given object represents a {@code String}
 *          equivalent to this string, {@code false} otherwise
 *
 * @see  #compareTo(String)
 * @see  #equalsIgnoreCase(String)
 */
public boolean equals(Object anObject) {
   if (this == anObject) {
      return true;
   }
   if (anObject instanceof String) {
      String anotherString = (String) anObject;
      int n = value.length;
      if (n == anotherString.value.length) {
         char v1[] = value;
         char v2[] = anotherString.value;
         int i = 0;
         while (n-- != 0) {
            if (v1[i] != v2[i])
               return false;
            i++;
         }
         return true;
      }
   }
   return false;
}

看代码多次判断比较

若当前对象和比较的对象是同一个对象,即return true。也就是Object中的equals方法。

若当前传入的对象是String类型,则比较两个字符串的长度,即value.length的长度。

若长度不相同,则return false

若长度相同,则按照数组value中的每一位进行比较,不同,则返回false。若每一位都相同,则返回true。

若当前传入的对象不是String类型,则直接返回false

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式