docs(notes): update basic-java

更新 Java String 类描述。
This commit is contained in:
yanglbme 2018-12-23 15:21:40 +08:00
parent 43e367c2e3
commit 88c3e48a53

View File

@ -148,15 +148,31 @@ System.out.println(m == n); // true
String 被声明为 final因此它不可被继承。
内部使用 char 数组存储数据,该数组被声明为 final这意味着 value 数组初始化之后就不能再引用其它数组。并且 String 内部没有改变 value 数组的方法,因此可以保证 String 不可变
在 Java 8 中String 内部使用 char 数组存储数据
```java
public final class String
implements java.io.Serializable, Comparable<String>, CharSequence {
/** The value is used for character storage. */
private final char value[];
}
```
在 Java 9 之后String 类的实现改用 byte 数组存储字符串,同时使用 `coder` 来标识使用了哪种编码。
```java
public final class String
implements java.io.Serializable, Comparable<String>, CharSequence {
/** The value is used for character storage. */
private final byte[] value;
/** The identifier of the encoding used to encode the bytes in {@code value}. */
private final byte coder;
}
```
value 数组被声明为 final这意味着 value 数组初始化之后就不能再引用其它数组。并且 String 内部没有改变 value 数组的方法,因此可以保证 String 不可变。
## 不可变的好处
**1. 可以缓存 hash 值**