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

資訊專欄INFORMATION COLUMN

關(guān)于String內(nèi)的indexOf方法的一些疑問

sunnyxd / 3076人閱讀

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

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

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內(nèi)的位置,若查找到max位置還找到,則返回-1;

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

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

但是仔細讀代碼會發(fā)現(xiàn)一個問題,就是這里

int max = sourceOffset + (sourceCount - targetCount);

max的計算方式,max的作用是計算出最大的首字符匹配次數(shù),取值范圍應(yīng)該是"max <= sourceCount"。
所以target字符串的長度是可以不用匹配的,故“sourceCount - targetCount”是沒問題的。
關(guān)鍵的地方是這里加上了sourceOffset,sourceOffset是source字符串的起始匹配偏移量,即從source的哪個字符開始匹配。
所以,根據(jù)代碼里的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內(nèi)可以匹配到返回正確結(jié)果8(結(jié)果8是相對于sourceOffset的結(jié)果,如果轉(zhuǎn)換成source內(nèi)的位置則是13)。
但是如果target在source內(nèi)匹配不到,則會拋出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,應(yīng)該改為 int max = sourceCount - targetCount;

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

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/72701.html

相關(guān)文章

  • javascript 數(shù)組去重6種思路

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

    AlphaWallet 評論0 收藏0
  • 也談JavaScript數(shù)組去重

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

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

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

    awokezhou 評論0 收藏0
  • JS數(shù)組中indexOf方法

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

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

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

    chnmagnus 評論0 收藏0

發(fā)表評論

0條評論

sunnyxd

|高級講師

TA的文章

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