首页 > 作文

Java集合的Collection接口和List接口详解

更新时间:2023-04-06 02:13:46 阅读: 评论:0

1集合的概念

把集合看做是一个容器,集合不是一个类哈尔滨财经学院,是一套集合框架,框架体系包含很多的集合类,java api提供了集合存储任意类型(基本包装类型,引用类型)集合对元素的增删查改操作起来非常方便的,专门提供很多方便操作的方法开发中经常集合来操作数据的,开发地位比较高的,考虑对数据的操作效率上的问题

2 集合的父类collection接口

2.1常用方法

boolean add(e e) 添加某个元素addall(元素) 添加一个集合remove(object) 删除一个元素removeall(collection) 删除一个集合c.clear(); //移除所有impty() 判断是否为空

2.2遍历

使用foreach 遍历使用迭代器遍历使用toarray()方法转成数组,再遍历.使用for遍历

3 list接口

list接口继承了collection接口,所以collection接口的方法list都可以使用.

3.1list接口常用方法

鲁迅的风筝添加

boolean add(e e) 添加一个元素void add(int index, e element) 添加某个元素到指定位置

boolean addall(collection<? extends e> c) 添加一个集合

boolean-addall(int index, collection<? extends e> c) 添加一个集合到指定位置

删除

e remove(int index) 删除指定位置的元素boolean remove(object o) 删除某个元素boolean removeall(collection<?> c) 删除一个集合

修改

e t(int index, e element)

获取

e get(int index)int size()其他int indexof(object o)int lastindexof(object o)list sublist心理健康课(i星期日英文nt fromindex, int toindex)

3.2遍历

e get(int index) + int size()listiterator listiterator()listiterator listiterator(int index)

员工类:

list的遍历

e get(int index) + int size()listiterator listiterator()listiter2021年考研时间ator listiterator(int index)iterator();toarray();foreachtostringfor()

4 集合中元素的去重

总结

本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注www.887551.com的更多内容!

本文发布于:2023-04-06 02:13:45,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/8d73821f8bfd89e1fde2879bb322c987.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:Java集合的Collection接口和List接口详解.doc

本文 PDF 下载地址:Java集合的Collection接口和List接口详解.pdf

标签:遍历   元素   接口   方法
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图