-5

String.equals()Javaで使用されているアルゴリズムを知っている人はいますか? Java は 2 つの単語をどのように比較しますか?

4

2 に答える 2

5

文字列からの単純な関数

    /**
 * 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;
}
于 2012-12-18T06:08:46.183 に答える
2

JDK での Java クラスのすべての実装を確認できます。

String クラスの実装を簡単に見つけることができるすべての Java クラスのソース コードを含む' src.zip ' を見つける JDK_HOME に移動するだけです。

于 2012-12-18T07:20:31.870 に答える