Skip to content

Commit df76461

Browse files
committed
更新
1 parent e6caaac commit df76461

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MD/ArrayList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
`ArrayList` 实现于 `List``RandomAccess` 接口。可以插入空数据,也支持随机随机访问。
66

77
`ArrayList `相当于动态数据,其中最重要的两个属性分别是:
8-
`elementData` 数组,以及 size 大小。
8+
`elementData` 数组,以及 `size` 大小。
99
在调用 `add()` 方法的时候:
1010
```java
1111
public boolean add(E e) {

0 commit comments

Comments
 (0)