ArrayList、Vector

1. List接口 在实际开发中,List接口的使用频率在Collection接口的子接口中很高,在进行集合处理的时候,有限考虑Llist接口。 List接口中重要的扩展方法: public E get(int index) // 根据索引取得数据 public E set(int index, E element) // 根据指定索引修改相应元素 List接口与Collection接口相比较最大
相关文章
相关标签/搜索