Skip to content

Commit 9950c2a

Browse files
committed
✨ Introducing new features.ArrayList
1 parent 979b0a3 commit 9950c2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MD/ArrayList.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
### 序列化
5959

60-
由于 ArrayList 是基于动态数组实现的,所以并不是所有的空间都被使用,所以使用了 `transient` 修饰,可以防止被序列化
60+
由于 ArrayList 是基于动态数组实现的,所以并不是所有的空间都被使用。因此使用了 `transient` 修饰,可以防止被自动序列化
6161

6262
```java
6363
transient Object[] elementData;

0 commit comments

Comments
 (0)