Java String 的 equals() 方法可能的最佳化

來源:互聯網
上載者:User
最佳化




JDK1.4, 1.5 的 String Class 代碼如下











以下內容為程式碼











public final class String











    implements java.io.Serializable, Comparable<String>, CharSequence











{











    /** The value is used for character storage. */











    private final char value[];












 


 



 



    /** The offset is the first index of the storage that is used. */











    private final int offset;












 


 



 



    /** The count is the number of characters in the String. */











    private final int count;
























 


 



 



以下內容為程式碼











    /**











     * Initializes a newly created <code>String</code> object so that it











     * represents the same sequence of characters as the argument; in other











     * words, the newly created string is a copy of the argument string. Unless











     * an explicit copy of <code>original</code> is needed, use of this











     * constructor is unnecessary since Strings are immutable.











     *











     * @param   original   a <code>String</code>.











     */











    public String(String original) {











            int size = original.count;











            char[] originalValue = original.value;











            char[] v;











            if (originalValue.length > size) {











                // The array representing the String is bigger than the new











                // String itself.  Perhaps this constructor is being called











                // in order to trim the baggage, so make a copy of the array.











                v = new char[size];











                System.arraycopy(originalValue, original.offset, v, 0, size);











            } else {











                // The array representing the String is the same











                // size as the String, so no point in making a copy.











                v = originalValue;











            }











            this.offset = 0;











            this.count = size;











            this.value = v;











    }























從這段建構函式中,我們可以看出,不同Reference的String之間有可能共用相同的 char[]。












 


 



 



以下內容為程式碼











    /**











     * Compares this string to the specified object.











     * The result is <code>true</code> if and only if the argument is not











     * <code>null</code> and is a <code>String</code> object that represents











     * the same sequence of characters as this object.











     *











     * @param   anObject   the object to compare this <code>String</code>











     *                     against.











     * @return  <code>true</code> if the <code>String </code>are equal;











     *          <code>false</code> otherwise.











     * @see     java.lang.String#compareTo(java.lang.String)











     * @see     java.lang.String#equalsIgnoreCase(java.lang.String)











     */











    public boolean equals(Object anObject) {











            if (this == anObject) {











                return true;











            }











            if (anObject instanceof String) {











                String anotherString = (String)anObject;











                int n = count;











                if (n == anotherString.count) {











                        char v1[] = value;











                        char v2[] = anotherString.value;











                        int i = offset;











                        int j = anotherString.offset;











                        while (n-- != 0) {











                            if (v1[i++] != v2[j++])











                                    return false;











                        }











                        return true;











                }











            }











            return false;











    }























但是,equals 方法似乎忽略了這個可能。沒有直接對兩者的char[]的reference進行比較。











按照我的想法,應該加入這麼一段。












 


 



 



以下內容為程式碼











            if (anObject instanceof String) {











                String anotherString = (String)anObject;











                int n = count;











                if (n == anotherString.count) {











                        char v1[] = value;











                        char v2[] = anotherString.value;











                        int i = offset;











                        int j = anotherString.offset;












 


 



 



                        ////{{











                        if(i == j && v1 == v2) return true; // NOTE: this line is added by me











                        ////}}












 


 



 



                        while (n-- != 0) {











                            if (v1[i++] != v2[j++])











                                    return false;











                        }
























 


 



 



這樣就能夠對應共用 char[] 的情況,能夠加快比較速度。














相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.