2

以下は for のソースhashCode()ですString:

public int hashCode() 
{
   int h = hash;

   if (h == 0 && count > 0) 
   {
        int off = offset;
        char val[] = value;
        int len = count;

        for (int i = 0; i < len; i++) 
        {
            h = 31*h + val[off++];
        }

        hash = h;
   }

   return h;
}

offは 0 に初期化されoffsetます (ソースのどこを見ても、各割り当てで 0 になりました)。次に、forループ内で、の代わりにvalvia を介して反復されます。どうしてこれなの?そもそも使用する必要性を排除しないのはなぜですか? 存在するのにはそれなりの理由があると思います。洞察はありますか?offiioffsetoffset

4

3 に答える 3

7

substring 関数は、0 以外のオフセット値を持つ新しい文字列を作成します。

public String substring(int beginIndex, int endIndex) {
if (beginIndex < 0) {
    throw new StringIndexOutOfBoundsException(beginIndex);
}
if (endIndex > count) {
    throw new StringIndexOutOfBoundsException(endIndex);
}
if (beginIndex > endIndex) {
    throw new StringIndexOutOfBoundsException(endIndex - beginIndex);
}
return ((beginIndex == 0) && (endIndex == count)) ? this :
    new String(offset + beginIndex, endIndex - beginIndex, value);
}

このコンストラクタが呼び出されます。

// Package private constructor which shares value array for speed.
String(int offset, int count, char value[]) {
this.value = value;
this.offset = offset;
this.count = count;
}

したがって、オフセットは常に 0 ではありません。

于 2013-06-28T04:45:09.140 に答える
5

Java では、文字列を親文字列の部分文字列として定義できます。これにより、巨大な文字列の多くの部分文字列を作成する場合 (解析など) にスペースを節約できます。その場合、オフセットを使用して、親文字列のどこから開始するかを決定します。

于 2013-06-28T04:42:30.303 に答える