写点什么

源码超度:String、StringBuffer、StringBuilder

作者:无心水
  • 2021 年 12 月 14 日
  • 本文字数:2192 字

    阅读完需:约 7 分钟

源码超度:String、StringBuffer、StringBuilder

概要

String、StringBuffer、StringBuilder 是常用的字符序列,从源码上对比下,三者的区别

类结构

String

StringBuffer

StringBuilder


  1. 都实现了interface CharSequence,interface Comparable<T>,interface Serializable

  2. StringBuilder,StringBuffer继承了abstract class AbstractStringBuilder




CharSequence: A CharSequence is a readable sequence of char values. This interface provides uniform, read-only access to many different kinds of char sequences.


Comparable: This interface imposes a total ordering on the objects of each class that implements it.This ordering is referred to as the class's NATURAL ORDERING, and the class's compareTo method is referred to as its natural comparison method


Serializable: Serializability of a class is enabled by the class implementing the java.io.Serializable interface.


AbstractStringBuilder: A MUTABLE SEQUENCE of characters. Implements a modifiable string. At any point in time it contains some particular sequence of characters, but the length and content of the sequence CAN BE CHANGED through certain method calls.


Appendable:An object to which char sequences and values can be appended.



数据结构

String


final 型 byte 数组,不可修改性的源头。

StringBuffer、StringBuilder

java.lang.AbstractStringBuilder中:


    /**     * The value is used for character storage.     */    byte[] value;
复制代码


通过继承java.lang.Appendable支持修改

设计目标

String

Strings are constant; their values cannot be changed after they are created. String buffers support mutable strings.Because String objects are immutable they can be shared
复制代码

StringBuffer

 * A thread-safe, mutable sequence of characters. * A string buffer is like a {@link String}, but can be modified. At any * point in time it contains some particular sequence of characters, but * the length and content of the sequence can be changed through certain * method calls. * <p> * String buffers are safe for use by multiple threads. The methods * are synchronized where necessary so that all the operations on any * particular instance behave as if they occur in some serial order * that is consistent with the order of the method calls made by each of * the individual threads involved.
复制代码

StringBuilder

 * A mutable sequence of characters.  This class provides an API compatible * with {@code StringBuffer}, but with no guarantee of synchronization. * This class is designed for use as a drop-in replacement for * {@code StringBuffer} in places where the string buffer was being * used by a single thread (as is generally the case).   Where possible, * it is recommended that this class be used in preference to * {@code StringBuffer} as it will be faster under most implementations.
复制代码

无参构造函数

String

    /**     * Initializes a newly created {@code String} object so that it represents     * an empty character sequence.  Note that use of this constructor is     * unnecessary since Strings are immutable.     */    public String() {        this.value = "".value;        this.coder = "".coder;    }
复制代码

StringBuffer、StringBuilder

java.lang.AbstractStringBuilder中:


    /**     * Creates an AbstractStringBuilder of the specified capacity.     */    AbstractStringBuilder(int capacity) {        if (COMPACT_STRINGS) {            value = new byte[capacity];            coder = LATIN1;        } else {            value = StringUTF16.newBytesFor(capacity);            coder = UTF16;        }    }
复制代码


    /**     * Constructs a string buffer with no characters in it and an     * initial capacity of 16 characters.     */    @HotSpotIntrinsicCandidate    public StringBuffer() {        super(16);    }
复制代码


    /**     * Constructs a string builder with no characters in it and an     * initial capacity of 16 characters.     */    @HotSpotIntrinsicCandidate    public StringBuilder() {        super(16);    }
复制代码


默认 byte[]初始化长度时 16,调用 append 方法时,长度不够,会扩容,进行数组复制。


已知内容的情况下,可以通过指定长度,来避免扩容、减少数组复制。




一般情况下,可以不用考虑这么多,性能要求严格的情况下,需要考虑减少数组复制。


Arrays.copyOf底层是java.lang.System#arraycopy,arraycopy在 JVM 层面,会有更高效的方法替代。


总结

  1. String 初始化后不可修改,StringBuilder、StringBuffer 支持修改。

  2. 操作少量的数据或者常量使用 String

  3. 单线程操作字符串缓冲区下操作大量数据,使用 StringBuilder

  4. 多线程操作字符串缓冲区下操作大量数据,使用 StringBuffer

  5. 性能严格要求的场景下,StringBuilder、StringBuffer 可以通过指定初始化容量,减少数组复制

发布于: 3 小时前阅读数: 8
用户头像

无心水

关注

路漫漫其修远兮 2018.08.16 加入

熟悉Java,略懂Python

评论

发布
暂无评论
源码超度:String、StringBuffer、StringBuilder