Skip to content

Commit 5c2de36

Browse files
authored
去掉第23行重复的“这个”
1 parent c338579 commit 5c2de36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/collection/arraylist-source-code.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class ArrayList<E> extends AbstractList<E>
2020
}
2121
```
2222

23-
- `RandomAccess` 是一个标志接口,表明实现这个这个接口的 List 集合是支持**快速随机访问**的。在 `ArrayList` 中,我们即可以通过元素的序号快速获取元素对象,这就是快速随机访问。
23+
- `RandomAccess` 是一个标志接口,表明实现这个接口的 List 集合是支持**快速随机访问**的。在 `ArrayList` 中,我们即可以通过元素的序号快速获取元素对象,这就是快速随机访问。
2424
- `ArrayList` 实现了 **`Cloneable` 接口** ,即覆盖了函数`clone()`,能被克隆。
2525
- `ArrayList` 实现了 `java.io.Serializable`接口,这意味着`ArrayList`支持序列化,能通过序列化去传输。
2626

0 commit comments

Comments
 (0)