极悦
ArrayList与Vector底层都是数组, 访问快, 添加/删除慢
● ArrayList与Vector底层都是数组
● ArrayList与Vector默认初始化容量:10
● ArrayList扩容: 1.5倍, Vector扩容:2倍
● Vector提供的方法都使用了synchronized修饰 ,是线程安全的,ArrayList不是线程安全的。