AbstractStringBuilderソース分析
8797 ワード
クラス定義はAppendableインタフェースを実現し、 をシーケンス化することができる.はCharSequenceインターフェースを実現した:char値の読み取り可能なシーケンスである.このインタフェースは、多くの異なる種類のcharシーケンスに対して統一的な読み取り専用アクセスを提供します.
コンストラクタ
capacityの容量を持つ文字列を作成
方法
codePointAtメソッドではCharacterが使用されています.codePointAtImpl(value,index,count)によって実現される
getChars法の実現にはSystemを用いる.Arraycopy()メソッド
append法はensureCapacityInternal()法とgetChars()法に関連して実現された.
Arraysを使いました.copyOf()で実現
Arrays.fill(value, count, newLength, ‘\0’);文字列間のコピー
delete()文字列のサイズだけを変更しても文字列は削除されません
Systemの活用を学ぶArraycopy()メソッド
abstract class AbstractStringBuilder implements Appendable, CharSequence
コンストラクタ
AbstractStringBuilder(int capacity) {
value = new char[capacity];
}
capacityの容量を持つ文字列を作成
方法
public int codePointAt(int index) {
if ((index < 0) || (index >= count)) {
throw new StringIndexOutOfBoundsException(index);
}
return Character.codePointAtImpl(value, index, count);
}
codePointAtメソッドではCharacterが使用されています.codePointAtImpl(value,index,count)によって実現される
public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
{
if (srcBegin < 0)
throw new StringIndexOutOfBoundsException(srcBegin);
if ((srcEnd < 0) || (srcEnd > count))
throw new StringIndexOutOfBoundsException(srcEnd);
if (srcBegin > srcEnd)
throw new StringIndexOutOfBoundsException("srcBegin > srcEnd");
System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);
}
getChars法の実現にはSystemを用いる.Arraycopy()メソッド
public AbstractStringBuilder append(String str) {
if (str == null)
return appendNull();
int len = str.length();
ensureCapacityInternal(count + len);
str.getChars(0, len, value, count);
count += len;
return this;
}
append法はensureCapacityInternal()法とgetChars()法に関連して実現された.
void expandCapacity(int minimumCapacity) {
int newCapacity = value.length * 2 + 2;
if (newCapacity - minimumCapacity < 0)
newCapacity = minimumCapacity;
if (newCapacity < 0) {
if (minimumCapacity < 0) // overflow
throw new OutOfMemoryError();
newCapacity = Integer.MAX_VALUE;
}
value = Arrays.copyOf(value, newCapacity);
}
Arraysを使いました.copyOf()で実現
public void setLength(int newLength) {
if (newLength < 0)
throw new StringIndexOutOfBoundsException(newLength);
ensureCapacityInternal(newLength);
if (count < newLength) {
Arrays.fill(value, count, newLength, '\0');
}
count = newLength;
}
Arrays.fill(value, count, newLength, ‘\0’);文字列間のコピー
public AbstractStringBuilder delete(int start, int end) {
if (start < 0)
throw new StringIndexOutOfBoundsException(start);
if (end > count)
end = count;
if (start > end)
throw new StringIndexOutOfBoundsException();
int len = end - start;
if (len > 0) {
System.arraycopy(value, start+len, value, start, count-end);
count -= len;
}
return this;
}
delete()文字列のサイズだけを変更しても文字列は削除されません
public AbstractStringBuilder insert(int index, char[] str, int offset,
int len)
{
if ((index < 0) || (index > length()))
throw new StringIndexOutOfBoundsException(index);
if ((offset < 0) || (len < 0) || (offset > str.length - len))
throw new StringIndexOutOfBoundsException(
"offset " + offset + ", len " + len + ", str.length "
+ str.length);
ensureCapacityInternal(count + len);
System.arraycopy(value, index, value, index + len, count - index);
System.arraycopy(str, offset, value, index, len);
count += len;
return this;
}
Systemの活用を学ぶArraycopy()メソッド