2021/6/3 JAVA集合框架Collection,set,map
集合框架
Collection体系
特点:代表任意一组的对象,无序,无下标,不能重复
Collection示例一
* Collection接口的使用(一)
* 1.添加元素
* 2.删除元素
* 3.遍历元素
* 4.判断
*/
public class Demo1{
pubic static void main(String[] args){
//创建集合
Collection collection=new ArrayList();
/
原创
2021-06-10 01:42:16 ·
1186 阅读 ·
0 评论