1.4JDK源码阅读之AbstractStringBuilder

Posted 康子的自留地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.4JDK源码阅读之AbstractStringBuilder相关的知识,希望对你有一定的参考价值。

AbstractStringBuilder源码分析

简介

AbstractStringBuild 实现可修改的字符串,是StringBuffer和StringBuilder,这两个类的父类。

类声明

 
   
   
 
  1. abstract class AbstractStringBuilder implements Appendable, CharSequence

  1. 默认访问控制修饰符,说明只能在包内使用,即只能在JDK内部使用

  2. 用abstract修饰类名说明AbstractStringBuild是一个抽象类,只能被继承,不能直接创建对象。它就一个抽象方法,toString方法。

  3. 实现了Appendable接口,Appendable能够被追加 char 序列和值的对象。如果某个类的实例打算接收来自 Formatter 的格式化输出,那么该类必须实现 Appendable 接口。 append(CharSequence csq) throws IOException:添加一个字符序列 append(CharSequence csq, int start, int end) throws IOException:添加一个字符序列的一部分 append(char c) throws IOException:添加一个字符

  4. 实现了Charsequence接口,代表该类,或其子类是一个字符序列。 length():需要实现该字符序列的长度 charAt(int index):可以取得下标为index的的字符 subSequence(int start, int end):可以得到该字符序列的一个子字符序列 toString():重写了父类Object的toString()

变量

 
   
   
 
  1. /**

  2. * 该值用于字符存储

  3. * The value is used for character storage.

  4. */

  5. char[] value;


  6. /**

  7. * 该值用于存储字符的实际数量,value.length = 100 实际存储字符数是30 则count = 30

  8. * The count is the number of characters used.

  9. */

  10. int count;

注:这里的value同String类中的value不同,String类中的value是final的不可被修改,这里的value是动态的,并且可提供给外部直接操作。

构造器

 
   
   
 
  1. /**

  2. * 这个无参数构造函数是序列化子类所必需的

  3. * This no-arg constructor is necessary for serialization of subclasses.

  4. */

  5. AbstractStringBuilder() {

  6. }


  7. /**

  8. * 创建指定容量的AbstractStringBuilder

  9. * Creates an AbstractStringBuilder of the specified capacity.

  10. */

  11. AbstractStringBuilder(int capacity) {

  12. value = new char[capacity];

  13. }

方法

1.length()

 
   
   
 
  1. /**

  2. * 返回已经存储字符序列的实际长度,即count的值。


  3. * Returns the length (character count).

  4. *

  5. * @return the length of the sequence of characters currently

  6. * represented by this object

  7. */

  8. public int length() {

  9. return count;

  10. }

2.capacity()

 
   
   
 
  1. /**

  2. * 返回当前容量,在下一次添加元素的时候,可能会对数组进行扩容

  3. * Returns the current capacity. The capacity is the amount of storage

  4. * available for newly inserted characters, beyond which an allocation

  5. * will occur.

  6. *

  7. * @return the current capacity

  8. */

  9. public int capacity() {

  10. return value.length;

  11. }

3. ensureCapacity(int minimumCapacity)

 
   
   
 
  1. /**

  2. * 确保容量至少等于指定的最小值。如果当前容量小于参数,则分配一个新的具有更大容量的内部数组。

  3. * 新容量是最小容量参数中较大的一个。

  4. * 是原来容量的两倍,加上2。

  5. * 如果minimumCapacity参数是非正的,则此方法不采取任何操作,只返回。

  6. *

  7. * Ensures that the capacity is at least equal to the specified minimum.

  8. * If the current capacity is less than the argument, then a new internal

  9. * array is allocated with greater capacity. The new capacity is the

  10. * larger of:

  11. * <ul>

  12. * <li>The <code>minimumCapacity</code> argument.

  13. * <li>Twice the old capacity, plus <code>2</code>.

  14. * </ul>

  15. * If the <code>minimumCapacity</code> argument is nonpositive, this

  16. * method takes no action and simply returns.

  17. *

  18. * @param minimumCapacity the minimum desired capacity.

  19. */

  20. public void ensureCapacity(int minimumCapacity) {

  21. if (minimumCapacity > 0)

  22. ensureCapacityInternal(minimumCapacity);

  23. }


  24. /**

  25. * This method has the same contract as ensureCapacity, but is

  26. * never synchronized.

  27. */

  28. private void ensureCapacityInternal(int minimumCapacity) {

  29. // overflow-conscious code

  30. if (minimumCapacity - value.length > 0)

  31. expandCapacity(minimumCapacity);

  32. }


  33. /**

  34. * This implements the expansion semantics of ensureCapacity with no

  35. * size check or synchronization.

  36. */

  37. void expandCapacity(int minimumCapacity) {

  38. int newCapacity = value.length * 2 + 2;

  39. if (newCapacity - minimumCapacity < 0)

  40. newCapacity = minimumCapacity;

  41. if (newCapacity < 0) {

  42. if (minimumCapacity < 0) // overflow

  43. throw new OutOfMemoryError();

  44. newCapacity = Integer.MAX_VALUE;

  45. }

  46. // 扩容

  47. value = Arrays.copyOf(value, newCapacity);

  48. }

这里提个问题:上面 expandCapacity(int minimumCapacity) 方法中 为何newCapacity后面还需要判断是否小于零?文末会公布答案。

4. trimToSize()

 
   
   
 
  1. /**

  2. * 减少字符序列的使用空间,比如申请了100字符长度的空间,但是现在只用了60个,

  3. * 那剩下的40个无用的空间放在那里占内存,可以调用此方法释放掉未用到的内存。

  4. * 原理很简单,只申请一个count大小的数组把原数组中的内容复制到新数组中,

  5. * 原来的数组由于没有被任何引用所指向,之后会被gc回收。

  6. *

  7. * Attempts to reduce storage used for the character sequence.

  8. * If the buffer is larger than necessary to hold its current sequence of

  9. * characters, then it may be resized to become more space efficient.

  10. * Calling this method may, but is not required to, affect the value

  11. * returned by a subsequent call to the {@link #capacity()} method.

  12. */

  13. public void trimToSize() {

  14. if (count < value.length) {

  15. value = Arrays.copyOf(value, count);

  16. }

  17. }

5. setLength(int newLength)

 
   
   
 
  1. /**

  2. * 用空字符'\0'填充未使用的空间。首先对数组进行扩容,然后将剩余未使用的空间全部填充为'\0'字符。

  3. * newLength参数必须大于或等于0。

  4. *

  5. * Sets the length of the character sequence.

  6. * The sequence is changed to a new character sequence

  7. * whose length is specified by the argument. For every nonnegative

  8. * index <i>k</i> less than <code>newLength</code>, the character at

  9. * index <i>k</i> in the new character sequence is the same as the

  10. * character at index <i>k</i> in the old sequence if <i>k</i> is less

  11. * than the length of the old character sequence; otherwise, it is the

  12. * null character <code>'&#92;u0000'</code>.

  13. *

  14. * In other words, if the <code>newLength</code> argument is less than

  15. * the current length, the length is changed to the specified length.

  16. * <p>

  17. * If the <code>newLength</code> argument is greater than or equal

  18. * to the current length, sufficient null characters

  19. * (<code>'&#92;u0000'</code>) are appended so that

  20. * length becomes the <code>newLength</code> argument.

  21. * <p>

  22. * The <code>newLength</code> argument must be greater than or equal

  23. * to <code>0</code>.

  24. *

  25. * @param newLength the new length

  26. * @throws IndexOutOfBoundsException if the

  27. * <code>newLength</code> argument is negative.

  28. */

  29. public void setLength(int newLength) {

  30. if (newLength < 0)

  31. throw new StringIndexOutOfBoundsException(newLength);

  32. ensureCapacityInternal(newLength);


  33. if (count < newLength) {

  34. for (; count < newLength; count++)

  35. value[count] = '\0';

  36. } else {

  37. count = newLength;

  38. }

  39. }

6. charAt(int index)

 
   
   
 
  1. /**

  2. * 获取字符序列中指定位置的字符,范围为0到count,超出范围抛StringIndexOutOfBoundsException异常。

  3. */

  4. public char charAt(int index) {

  5. if ((index < 0) || (index >= count))

  6. throw new StringIndexOutOfBoundsException(index);

  7. return value[index];

  8. }

7. codePointAt(int index)

 
   
   
 
  1. /**

  2. * 获取字符序列中指定位置的字符,所对应的代码点,即ascii码。

  3. */

  4. public int codePointAt(int index) {

  5. if ((index < 0) || (index >= count)) {

  6. throw new StringIndexOutOfBoundsException(index);

  7. }

  8. return Character.codePointAt(value, index);

  9. }

8.codePointBefore(int index)

 
   
   
 
  1. /**

  2. * 获取字符序列中指定位置的前一个位置的字符,所对应的代码点。

  3. */

  4. public int codePointBefore(int index) {

  5. int i = index - 1;

  6. if ((i < 0) || (i >= count)) {

  7. throw new StringIndexOutOfBoundsException(index);

  8. }

  9. return Character.codePointBefore(value, index);

  10. }

9. codePointCount(int beginIndex, int endIndex)

 
   
   
 
  1. /**

  2. * 获取字符串代码点个数,是实际上的字符个数

  3. */

  4. public int codePointCount(int beginIndex, int endIndex) {

  5. if (beginIndex < 0 || endIndex > count || beginIndex > endIndex) {

  6. throw new IndexOutOfBoundsException();

  7. }

  8. return Character.codePointCountImpl(value, beginIndex, endIndex-beginIndex);

  9. }

10. offsetByCodePoints(int index, int codePointOffset)

 
   
   
 
  1. /**

  2. * 返回此字符序列中从给定的index处偏移codePointOffset个代码点的索引。

  3. */

  4. public int offsetByCodePoints(int index, int codePointOffset) {

  5. if (index < 0 || index > count) {

  6. throw new IndexOutOfBoundsException();

  7. }

  8. return Character.offsetByCodePointsImpl(value, 0, count,

  9. index, codePointOffset);

  10. }

不清楚代码点的可以查看这一段,清楚的大佬请往下划拉 码点和代码单元这两个概念还是在《Java核心技术 卷一》发现的有兴趣可以看看这本书。 代码点: 代码点(code point)是指编码字符集中,字符所对应的数字。有效范围从U+0000到U+10FFFF。其中U+0000到U+FFFF为基本字符,U+10000到U+10FFFF为增补字符。 代码单元: 代码单元(code unit):对代码点进行编码得到的1或2个16位序列。其中基本字符的代码点直接用一个相同值的代码单元表示,增补字符的代码点用两个代码单元的进行编码,这个范围内没有数字用于表示字符,因此程序可以识别出当前字符是单单元的基本字符,还是双单元的增补字符。 代码点与代码单元: 一个代码单元为16位二进制,一个代码点为一个或两个16位二进制。即一个代码点可表示为一个代码单元或两个代码单元。

11. getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)

 
   
   
 
  1. /**

  2. * 将字符序列中指定区间srcBegin到srcEnd内的字符拷贝到dst字符数组中从dstBegin开始往后的位置中。

  3. */

  4. public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)

  5. {

  6. if (srcBegin < 0)

  7. throw new StringIndexOutOfBoundsException(srcBegin);

  8. if ((srcEnd < 0) || (srcEnd > count))

  9. throw new StringIndexOutOfBoundsException(srcEnd);

  10. if (srcBegin > srcEnd)

  11. throw new StringIndexOutOfBoundsException("srcBegin > srcEnd");

  12. System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);

  13. }

12. setCharAt(int index, char ch)

 
   
   
 
  1. /**

  2. * 设置字符序列中指定索引index位置的字符为ch

  3. */

  4. public void setCharAt(int index, char ch) {

  5. if ((index < 0) || (index >= count))

  6. throw new StringIndexOutOfBoundsException(index);

  7. value[index] = ch;

  8. }

13. append(……)

AbstractStringBuilder类中有很多append方法,作用是在原字符序列后添加给定的对象或元素所对应的字符序列,其方法原理类似。 1.首先判断所传参数是否为null,如果为null则调用append("null")。 2如果不为null则进行扩容操作,最小值为count+len,这一步可能增加容量也可能不增加,当count+len小于或等于capacity就不用进行扩容。 3.然后再将参数的字符串序列添加到value中。 4.最后返回this,注意这里返回的是this,也就意味者,可以在一条语句中多次调用append方法,即方法调用链。asb.append("asd").append("fgh");

14.delete(int start, int end)

 
   
   
 
  1. /**

  2. * 删除字符序列指定区间的内容。这个操作不改变原序列的容量。

  3. */

  4. public AbstractStringBuilder delete(int start, int end) {

  5. if (start < 0)

  6. throw new StringIndexOutOfBoundsException(start);

  7. if (end > count)

  8. end = count;

  9. if (start > end)

  10. throw new StringIndexOutOfBoundsException();

  11. int len = end - start;

  12. if (len > 0) {

  13. System.arraycopy(value, start+len, value, start, count-end);

  14. count -= len;

  15. }

  16. return this;

  17. }

15. appendCodePoint(int codePoint)

 
   
   
 
  1. /**

  2. * 在结尾添加代码点

  3. */

  4. public AbstractStringBuilder appendCodePoint(int codePoint) {

  5. final int count = this.count;


  6. if (Character.isBmpCodePoint(codePoint)) {

  7. ensureCapacityInternal(count + 1);

  8. value[count] = (char) codePoint;

  9. this.count = count + 1;

  10. } else if (Character.isValidCodePoint(codePoint)) {

  11. ensureCapacityInternal(count + 2);

  12. Character.toSurrogates(codePoint, value, count);

  13. this.count = count + 2;

  14. } else {

  15. throw new IllegalArgumentException();

  16. }

  17. return this;

  18. }

16. deleteCharAt(int index)

 
   
   
 
  1. /**

  2. * 删除字符序列中指定索引index位置的字符

  3. */

  4. public AbstractStringBuilder deleteCharAt(int index) {

  5. if ((index < 0) || (index >= count))

  6. throw new StringIndexOutOfBoundsException(index);

  7. System.arraycopy(value, index+1, value, index, count-index-1);

  8. count--;

  9. return this;

  10. }

17. replace(int start, int end, String str)

 
   
   
 
  1. /**

  2. * 将原字符序列指定区间start到end区间内的内容替换为str,替换过程中序列长度会改变,所以需要进行扩容和改就count的操作

  3. */

  4. public AbstractStringBuilder replace(int start, int end, String str) {

  5. if (start < 0)

  6. throw new StringIndexOutOfBoundsException(start);

  7. if (start > count)

  8. throw new StringIndexOutOfBoundsException("start > length()");

  9. if (start > end)

  10. throw new StringIndexOutOfBoundsException("start > end");


  11. if (end > count)

  12. end = count;

  13. int len = str.length();

  14. int newCount = count + len - (end - start);

  15. ensureCapacityInternal(newCount);


  16. System.arraycopy(value, end, value, start + len, count - end);

  17. str.getChars(value, start);

  18. count = newCount;

  19. return this;

  20. }

18. substring(……)

 
   
   
 
  1. public String substring(int start) {

  2. return substring(start, count);

  3. }

  4. /**

  5. * 切割原字符序列指定区间start到end内的内容,返回字符串

  6. */

  7. public String substring(int start, int end) {

  8. if (start < 0)

  9. throw new StringIndexOutOfBoundsException(start);

  10. if (end > count)

  11. throw new StringIndexOutOfBoundsException(end);

  12. if (start > end)

  13. throw new StringIndexOutOfBoundsException(end - start);

  14. return new String(value, start, end - start);

  15. }

19. subSequence(int start, int end)

 
   
   
 
  1. /**

  2. * 切割原字符序列指定区间start到end内的内容,返回CharSequence

  3. */

  4. public CharSequence subSequence(int start, int end) {

  5. return substring(start, end);

  6. }

20. insert(……)

insert 等方法作用是将给定定对象所对应的字符串插入到原序列的指定位置,同 append 类似但是 append 是末尾添加 insert 是指定位置插入元素

21. indexOf(……)

 
   
   
 
  1. /**

  2. * 查询给定字符串在原字符序列中第一次出现的位置,通过 String 的 indexOf 实现

  3. */

  4. public int indexOf(String str) {

  5. return indexOf(str, 0);

  6. }

  7. public int indexOf(String str, int fromIndex) {

  8. return String.indexOf(value, 0, count,

  9. str.toCharArray(), 0, str.length(), fromIndex);

  10. }

21. lastIndexOf(……)

 
   
   
 
  1. /**

  2. * 查询给定字符串在原字符序列中最后一次出现的位置,通过 String 的 lastIndexOf 实现

  3. */

  4. public int lastIndexOf(String str) {

  5. return lastIndexOf(str, count);

  6. }

  7. public int lastIndexOf(String str, int fromIndex) {

  8. return String.lastIndexOf(value, 0, count,

  9. str.toCharArray(), 0, str.length(), fromIndex);

  10. }

22. reverse()

 
   
   
 
  1. /**

  2. * 该方法用于将字符序列反转

  3. *

  4. */

  5. public AbstractStringBuilder reverse() {

  6. boolean hasSurrogate = false;

  7. int n = count - 1;

  8. for (int j = (n-1) >> 1; j >= 0; --j) {

  9. char temp = value[j];

  10. char temp2 = value[n - j];

  11. if (!hasSurrogate) {

  12. hasSurrogate = (temp >= Character.MIN_SURROGATE && temp <= Character.MAX_SURROGATE)

  13. || (temp2 >= Character.MIN_SURROGATE && temp2 <= Character.MAX_SURROGATE);

  14. }

  15. value[j] = temp2;

  16. value[n - j] = temp;

  17. }

  18. if (hasSurrogate) {

  19. // Reverse back all valid surrogate pairs

  20. for (int i = 0; i < count - 1; i++) {

  21. char c2 = value[i];

  22. if (Character.isLowSurrogate(c2)) {

  23. char c1 = value[i + 1];

  24. if (Character.isHighSurrogate(c1)) {

  25. value[i++] = c1;

  26. value[i] = c2;

  27. }

  28. }

  29. }

  30. }

  31. return this;

  32. }

hasSurrogate 是用来标识 字符序列中是否包含surrogates pair Surrogate Pair是UTF-16中用于扩展字符而使用的编码方式,是一种采用四个字节(两个UTF-16编码)来表示一个字符。 char在java中是16位的,刚好是一个UTF-16编码。而字符串中可能含有Surrogate Pair,但他们是一个单一完整的字符, 只不过是用两个char来表示而已,因此在反转字符串的过程中Surrogate Pairs 是不应该被反转的。

23. toString()

 
   
   
 
  1. /**

  2. * 返回此序列中的数据的字符串

  3. *

  4. * 这个抽象类中唯一的一个抽象方法,需要子类去实现

  5. */

  6. public abstract String toString();



如果你喜欢这篇文章,点好看,点转发。

Life is fantastic!明天见(。・ω・。)ノ♡

以上是关于1.4JDK源码阅读之AbstractStringBuilder的主要内容,如果未能解决你的问题,请参考以下文章

JDK1.8源码分析03之idea搭建源码阅读环境

JDK1.8源码分析02之阅读源码顺序

JDK源码阅读之Collection

JDK源码阅读之BufferedInputStream

源码阅读系列JDK 8 ConcurrentHashMap 源码分析之 由transfer引发的bug

1.2JDK源码阅读之Object