1、List和Set的区别 list 中的对象可重复,有序。set中不允许重复,并且无序。 2、List常用的实现类 ArrayList,Linkedlist以及Vector 3、ArrayList和LinkedList的区别 ArrayList的数据结构是数组,由于数组的特点,所以查询以及更新速度快,但是添加以及删除速度慢,因为每次操作,目标位置后面的元素都要移动,而Linkedlist是链表结构,所以和arraylist刚好相反。添加,删除快,而查询慢。 4、Set常用的实现类 HashSet,LinkedHashSet,TreeSet 5、HashSet和LinkedHa...