提交 d45282e5 编写于 作者: M Mars Liu

fixed arraylist

上级 bff1ee41
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
## 答案 ## 答案
ArrayList中的元素是有序的 ArrayList 占用的内存等于所有元素在内存中的尺寸之和。
## 选项 ## 选项
...@@ -14,8 +14,20 @@ ArrayList底层是基于数组来实现容量大小动态变化的 ...@@ -14,8 +14,20 @@ ArrayList底层是基于数组来实现容量大小动态变化的
### B ### B
ArrayList的扩容机制为首先扩容为原始容量的 1.5 倍 ArrayList 实现了 List 接口
### C
ArrayList 的修改速度接近数组,而插入和删除速度接近链表
### D ### D
所有都不是 ArrayList 实现了 Iterable 接口
### E
ArrayList 实现了 Collection 接口
### F
所有都对
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册