We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 979b0a3 commit 9950c2aCopy full SHA for 9950c2a
MD/ArrayList.md
@@ -57,7 +57,7 @@
57
58
### 序列化
59
60
-由于 ArrayList 是基于动态数组实现的,所以并不是所有的空间都被使用,所以使用了 `transient` 修饰,可以防止被序列化。
+由于 ArrayList 是基于动态数组实现的,所以并不是所有的空间都被使用。因此使用了 `transient` 修饰,可以防止被自动序列化。
61
62
```java
63
transient Object[] elementData;
0 commit comments