ArrayList与LinkedList的区别 1、ArrayList是基于动态数组的数据结构,LinkedList是基于链表的数据结构 2、对于随机访问get和set,ArrayList较优,因为LinkedList要移动指针 3、对于新增和删除操作,LinkedList较优,因为ArrayList要移动数据