We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6caaac commit df76461Copy full SHA for df76461
1 file changed
MD/ArrayList.md
@@ -5,7 +5,7 @@
5
`ArrayList` 实现于 `List`、`RandomAccess` 接口。可以插入空数据,也支持随机随机访问。
6
7
`ArrayList `相当于动态数据,其中最重要的两个属性分别是:
8
-`elementData` 数组,以及 size 大小。
+`elementData` 数组,以及 `size` 大小。
9
在调用 `add()` 方法的时候:
10
```java
11
public boolean add(E e) {
0 commit comments