ArrayList是实现了基于动态数组的数据结构用于, LinkedList基于连表的数据结构,二者都可以存储对象的引用。对于随机访问 get和set,ArrayList优于LinkedList,因为LinkedList要移动指针。对于新增和删除操作 add和remove, LinkedList比较占优势,因为 ArrayList要移动数据。HashMap是Hashtable的轻量级实现(非线程安全的实现) ,他们...