Java集合之List

 List繼承自Collection的接口,List也是集合的一種。List是有序隊列,List中的沒一個元素都會有一個索引,第一個元素的索引是0,往後的元素的索引值依次+1,List中允許有重複的元素。 List框架: List接口源碼: [java]   view plain  copy public interface List<E> extends Collection<E> {  
相關文章
相關標籤/搜索