🔥博客主页🔥:【 坊钰_CSDN博客 】
欢迎各位点赞👍评论✍收藏⭐
目录
1. 什么是 List
2. List 常用的方法
3. List 的使用
1. 什么是 List
其实 List 是一个接口,它继承了 Collection 接口
下列为 List 接口中的各种方法
对于数据结构来说,List 就是一个线性表,可对其进行增删查改等操...
2. List 常用的方法
boolean add(E e) 尾插 evoid add(int pos E e) 将 e 插入 pos 位置E remove(int pos) 删除 pos 位置元素void clear() 清空int indexOf(E e) 返回第一个 e 的下标int lastlindexOf(E e) 返回最后一个 e 的下标List<E> subList(int pos1,int pos2) 截取部分 List(线性表)
这些方法将在后续顺序表和链表中讲解
3. List 的使用
因为 List 是接口所以 List 不能实例化,ArrayList 和 LinkedList 都实现了 List 接口,如果使用 List 接口,就必须去示例 List 的现实类,如:
public class Test {public static void main(String[] args) {List<Integer> list1 = new ArrayList<>();List<Integer> list2 = new LinkedList<>();}
}
4. 小结
以上就是对 List 的了解,具体还需宝子们去实践,如果觉得该博客对你有用的话,希望一键三连,点个关注不迷路,谢谢支持 !