摘要: 介绍 首先来看ArrayList和LinkedList的集成类和接口的区别。// lang javapublic class ArrayListextends AbstractListimplements List, RandomAccess, Cloneable, Serializablepublic class LinkedListextends AbstractSequentialListimplements List, Queue, Cloneable, Serializable ArrayList实现了随机访问的接口,LinkedList实现了Quene的接口。 ArrayLi... 阅读全文
posted @ 2014-04-10 09:35 EchoLee 阅读(35511) 评论(2) 推荐(0) 编辑