发布时间:2023-01-28 文章分类:编程知识 投稿人:王小丽 字号: 默认 | | 超大 打印

Collection常用方法汇总

Collection公共的方法

//把给定元素添加到集合中
public boolean add(E e)
//把给定元素从集合中删除
public boolean remove(E e)
//清空集合中的所有元素
public void clear()
//判断集合中是否包含给定对象
public boolean contains(Object obj)
//判断集合是否为空
public boolean isEmpty()
//返回集合中的元素个数
public int size()

注意:

List特有的方法

//增:根据索引插入指定元素
public void add(int index,E e)
//删:删除指定索引处的元素,并返回被删除元素
public E remove(int index)
//改:修改指定索引处的元素,并返回被修改的元素
public E set(int index,E e)
//返回指定索引处的元素
public E get(int index)

注意:

public static void main(String[] args) {
	List<Integer> list = new ArrayList<>();
	list.add(1);
	list.add(2);
	list.add(3);
	list.remove(1);// int index 删除索引为1的元素
	list.remove(Integer.valueOf(1));// Object object 删除元素为1的元素
	System.out.println(list);
}

Set

Set集合的常用方法与Collection基本一样

------------

作者:CodingOrange
博客链接:https://www.cnblogs.com/CodingOrange/