中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

AbstractStringBuilder類源碼的示例分析

發布時間:2021-09-10 13:53:13 來源:億速云 閱讀:100 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關AbstractStringBuilder類源碼的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

因為看StringBuffer 和 StringBuilder 的源碼時發現兩者都繼承了AbstractStringBuilder,并且很多方法都是直接super的父類AbstractStringBuilder的方法,所以還是決定先看AbstractStringBuilder的源碼,然后再看StringBuffer 和 StringBuilder.

位置:java.lang包中

聲明: abstract class AbstractStringBuilderimplements Appendable, CharSequence

AbstractStringBuilder 類有abstract 修飾,可知它不能被實例化。

AbstractStringBuilder 類有兩個子類:StringBuilder和StringBuffer。

字段

 /**
     * The value is used for character storage.
     */
    char value[];
    /**
     * The count is the number of characters used.
     */
    int count;

構造器

1、無參構造器

AbstractStringBuilder() {
  }

2、創建abstractstringbuilder實現類的對象時指定緩沖區大小為capacity。

 AbstractStringBuilder(int capacity) {
    value = new char[capacity];
  }

當子類StringBuilder或StringBuffer實例化時,會在構造器中調用此構造器。

擴充容量

void expandCapacity(int minimumCapacity)

此方法有包訪問權限,類中有多個方法會調用此方法,在容量不足時擴充容量。

源碼:

 void expandCapacity(int minimumCapacity) {
    int newCapacity = (value.length + 1) * 2;
    if (newCapacity < 0) {
      newCapacity = Integer.MAX_VALUE;
    } else if (minimumCapacity > newCapacity) {
      newCapacity = minimumCapacity;
    }
    value = Arrays.copyOf(value, newCapacity);
  }

將緩沖區長度加1乘2的值賦予變量newCapacity, 然后將此值與指定的值比較,將較大值確定為緩沖區的新容量;然后調用Arrays類的copyof方法,此方法會創建一個新數組,然后將原數組中的字符全部復制進新數組中。

ensureCapacity(int minimumCapacity)

public void ensureCapacity(int minimumCapacity)

確保容量至少等于指定的最小值。如果當前容量小于指定值,則創建新數組,新數組的容量為指定值的兩倍加2;如果當前容量不小于指定值,則直接不做處理。

源碼:

 public void ensureCapacity(int minimumCapacity) {
    if (minimumCapacity > value.length) {
      expandCapacity(minimumCapacity);
    }
  }

測試:

StringBuffer s = new StringBuffer();
    System.out.println("容量:" + s.capacity());// 容量:16
    s.ensureCapacity(10);
    System.out.println("容量:" + s.capacity());// 容量:16
    s.ensureCapacity(30);
    System.out.println("容量:" + s.capacity());// 容量:34
    s.ensureCapacity(80);
    System.out.println("容量:" + s.capacity());// 容量:80

方法

codePointAt方法中都是用Character.codePointAtImpl(value, index, count)來實現的

public int codePointAt(int index) {
    if ((index < 0) || (index >= count)) {
      throw new StringIndexOutOfBoundsException(index);
    }
    return Character.codePointAtImpl(value, index, count);
  }

getChars方法的實現用的是System.arraycopy()方法

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);
  }

append方法都牽扯到了ensureCapacityInternal()方法和getChars()方法來實現

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;
  }

使用了Arrays.copyOf()來實現

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.fill(value, count, newLength, ‘\0');字符串之間的復制

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;
  }

delete() 僅改變字符串的大小并未真正的刪除字符串

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;
  }

學會靈活的運用System.arraycopy()方法

 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;
  }

感謝各位的閱讀!關于“AbstractStringBuilder類源碼的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平顺县| 东莞市| 江川县| 甘肃省| 五莲县| 乌兰浩特市| 山阴县| 泾川县| 凌海市| 榕江县| 吕梁市| 昭觉县| 涿州市| 郸城县| 玛纳斯县| 凉山| 中江县| 遵化市| 滨海县| 赤峰市| 瑞安市| 九江县| 苍梧县| 江永县| 孝感市| 施秉县| 八宿县| 嵩明县| 武汉市| 莱州市| 布拖县| 内江市| 奉新县| 多伦县| 望谟县| 安福县| 英吉沙县| 奎屯市| 游戏| 大宁县| 宁陵县|