国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

關于String內的indexOf方法的一些疑問

sunnyxd / 3062人閱讀

摘要:今天瀏覽了一下里的類,發現一個靜態方法有點意思,就是我們常用的的底層實現,先看下代碼調用鏈。所以字符串的長度是可以不用匹配的,故是沒問題的。關鍵的地方是這里加上了,是字符串的起始匹配偏移量,即從的哪個字符開始匹配。

今天瀏覽了一下java里的String類,發現一個靜態方法有點意思,就是我們常用的indexOf(String str)的底層實現,先看下代碼調用鏈。

public int indexOf(String str) {
    return indexOf(str, 0);
}
    
public int indexOf(String str, int fromIndex) {
    return indexOf(value, 0, value.length,
            str.value, 0, str.value.length, fromIndex);
}

static int indexOf(char[] source, int sourceOffset, int sourceCount,
        String target, int fromIndex) {
    return indexOf(source, sourceOffset, sourceCount,
                   target.value, 0, target.value.length,
                   fromIndex);
}

/**
 * Code shared by String and StringBuffer to do searches. The
 * source is the character array being searched, and the target
 * is the string being searched for.
 *
 * @param   source       the characters being searched.
 * @param   sourceOffset offset of the source string.
 * @param   sourceCount  count of the source string.
 * @param   target       the characters being searched for.
 * @param   targetOffset offset of the target string.
 * @param   targetCount  count of the target string.
 * @param   fromIndex    the index to begin searching from.
 */
static int indexOf(char[] source, int sourceOffset, int sourceCount,
        char[] target, int targetOffset, int targetCount,
        int fromIndex) {
    if (fromIndex >= sourceCount) {
        return (targetCount == 0 ? sourceCount : -1);
    }
    if (fromIndex < 0) {
        fromIndex = 0;
    }
    if (targetCount == 0) {
        return fromIndex;
    }

    char first = target[targetOffset];
    int max = sourceOffset + (sourceCount - targetCount);

    for (int i = sourceOffset + fromIndex; i <= max; i++) {
        /* Look for first character. */
        if (source[i] != first) {
            while (++i <= max && source[i] != first);
        }

        /* Found first character, now look at the rest of v2 */
        if (i <= max) {
            int j = i + 1;
            int end = j + targetCount - 1;
            for (int k = targetOffset + 1; j < end && source[j]
                    == target[k]; j++, k++);

            if (j == end) {
                /* Found whole string. */
                return i - sourceOffset;
            }
        }
    }
    return -1;
}

底層的字符串匹配的邏輯比較簡單,就是普通的匹配模式:

查找首字符,匹配target的第一個字符在source內的位置,若查找到max位置還找到,則返回-1;

若在source匹配到了target的第一個字符,那么在依次比較srouce和target后面的字符,一直到target的末尾;

如果target后面的字符與source都已經匹配,則返回在source上匹配到的第一個字符的相對下標,否則返回-1。

但是仔細讀代碼會發現一個問題,就是這里

int max = sourceOffset + (sourceCount - targetCount);

max的計算方式,max的作用是計算出最大的首字符匹配次數,取值范圍應該是"max <= sourceCount"。
所以target字符串的長度是可以不用匹配的,故“sourceCount - targetCount”是沒問題的。
關鍵的地方是這里加上了sourceOffset,sourceOffset是source字符串的起始匹配偏移量,即從source的哪個字符開始匹配。
所以,根據代碼里的max計算方式,最終計算出來的max值是會有可能大于sourceCount。
看下測試代碼:

package string;

/**
 * string test
 */
public class StringTest {

    static int indexOf(char[] source, int sourceOffset, int sourceCount,
                       char[] target, int targetOffset, int targetCount,
                       int fromIndex) {
        if (fromIndex >= sourceCount) {
            return (targetCount == 0 ? sourceCount : -1);
        }
        if (fromIndex < 0) {
            fromIndex = 0;
        }
        if (targetCount == 0) {
            return fromIndex;
        }

        char first = target[targetOffset];
        int max = sourceOffset + (sourceCount - targetCount);

        for (int i = sourceOffset + fromIndex; i <= max; i++) {
            /* Look for first character. */
            if (source[i] != first) {
                while (++i <= max && source[i] != first);
            }

            /* Found first character, now look at the rest of v2 */
            if (i <= max) {
                int j = i + 1;
                int end = j + targetCount - 1;
                for (int k = targetOffset + 1; j < end && source[j]
                        == target[k]; j++, k++);

                if (j == end) {
                    /* Found whole string. */
                    return i - sourceOffset;
                }
            }
        }
        return -1;
    }

    public static void main(String[] args) {
        String source = "abcdefghigklmn";
        String target = "n";
        int sourceOffset = 5;
        int targetOffset = 0;

        int index = indexOf(source.toCharArray(), sourceOffset, source.length(), target.toCharArray(), targetOffset, target.length(), 0);
        System.out.println(index);
    }
}

如果target在source內可以匹配到返回正確結果8(結果8是相對于sourceOffset的結果,如果轉換成source內的位置則是13)。
但是如果target在source內匹配不到,則會拋出java.lang.ArrayIndexOutOfBoundsException異常,如下:

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 14
    at string.StringTest.indexOf(StringTest.java:27)
    at string.StringTest.main(StringTest.java:52)

可見報出越界的下標是14,這就是由于max = sourceOffset + (sourceCount - targetCount)引起,計算出的max值為:17。

所以,個人認為max計算這里是個潛在的BUG,應該改為 int max = sourceCount - targetCount;

不過這個方法是一個非public方法,只在String內部調用,同時也跟蹤了所有對該方法的調用鏈,都是傳入的默認0,在使用時不會出現數組越界問題。
不知這是開發者故意為之,還是其它我未知用意,歡迎大家交流討論!!!

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/72701.html

相關文章

  • javascript 數組去重6種思路

    摘要:但是這并不妨礙我們從思維拓展的角度出發,看看去重可以用幾種思路去實現。首先是常規的雙層循環比對的思路實現定義一個變量表示當前元素在中是否存在。依次對中的元素和原數組元素進行比對。重點是保證碰撞的幾率小到比中大獎還小就可以了。 前端在日常開發中或多或少都會碰到有對數據去重的需求,實際上,像是lodash這些工具庫已經有成熟完備的實現,并且可以成熟地運用于生產環境。但是這并不妨礙我們從思維...

    AlphaWallet 評論0 收藏0
  • 也談JavaScript數組去重

    摘要:昨天在微博上看到一篇文章,也寫數組去重,主要推崇的方法是將利用數組元素當作對象來去重。我在微博轉發了用對象去重不是個好辦法然后作者問什么才是推薦的方法。實例對象實例對象主要指通過構造函數類生成的對象。 本文同時發布于個人博客https://www.toobug.net/articl... JavaScript的數組去重是一個老生常談的話題了。隨便搜一搜就能找到非常多不同版本的解法。 昨...

    崔曉明 評論0 收藏0
  • Javascripts數組原生方法集合

    摘要:如果數組已經為空,則不改變數組,并返回值。中所有在數組被修改時都遵從這個原則,以下不再重復方法會給原數組中的每個元素都按順序調用一次函數。每次執行后的返回值沒有指定返回值則返回組合起來 數組應該是我們在寫程序中應用到最多的數據結構了,相比于無序的對象,有序的數組幫我們在處理數據時,實在是幫了太多的忙了。今天剛好看到一篇Array.include的文章,忽然發現經過幾個ES3,ES5,E...

    awokezhou 評論0 收藏0
  • JS數組中indexOf方法

    摘要:數組方法大家再熟悉不過了,卻忽略了數組有這個方法我個人感覺。輸出因為是數組的第個元素,匹配到并返回下標。數組同樣有方法,只不過做類型判斷時,使用的嚴格相等,也就是。 本人微信公眾號:前端修煉之路,歡迎關注 前言 這兩天在家中幫朋友做項目,項目中使用了數組的indexOf 方法,找到了一篇文章,感覺非常不錯,順便整理下以防鏈接丟失。 相信說到 indexOf 大家并不陌生,判斷字符串是否...

    rickchen 評論0 收藏0
  • 字符串四則運算表達式

    摘要:支持括號小數負數也行運算數字運算符沒有括號正常運算括號內的值都取完了,刪除括號左右括號齊全先算括號內的一個包含數字的列表和一個包含運算符的列表形式可能會有空字符串符號列表同時出現從左至右運算同時出現從左 public static void main(String[] args) { // 支持括號 小數 負數 String statement ...

    chnmagnus 評論0 收藏0

發表評論

0條評論

sunnyxd

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<