JavaSE进阶--Collection集合
2021-04-09 23:29
标签:java str 而且 nta 清空 dem bec lin tips tips: 有关Collection中的方法可不止上面这些,其他方法可以自行查看API学习。 JavaSE进阶--Collection集合 标签:java str 而且 nta 清空 dem bec lin tips 原文地址:https://www.cnblogs.com/sinlearn/p/13371702.htmlCollection集合
1.1 集合概述
我们已经学习过并使用过集合ArrayList ,那么集合到底是什么呢?
集合和数组既然都是容器,它们有啥区别呢?
int[] arr = new int[10];
Student[] stu = new Student[3];
ArrayList
1.2 ?集合框架
1.3 Collection 常用功能
Collection是所有单列集合的父接口,因此在Collection中定义了单列集合(List和Set)通用的一些方法,这些方法可用于操作所有的单列集合。方法如下:
public boolean add(E e)
: ?把给定的对象添加到当前集合中 。public void clear()
:清空集合中所有的元素。public boolean remove(E e)
: 把给定的对象在当前集合中删除。public boolean contains(E e)
: 判断当前集合中是否包含给定的对象。public boolean isEmpty()
: 判断当前集合是否为空。public int size()
: 返回集合中元素的个数。public Object[] toArray()
: 把集合中的元素,存储到数组中。
方法演示:package 集合和泛型.Collection;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
/**
* 在Collection接口定义着单列集合框架中最最共性的内容。
*
* 共性方法:
* public boolean add(E e): 把给定的对象添加到当前集合中 。
* public void clear() :清空集合中所有的元素。
* public boolean remove(E e): 把给定的对象在当前集合中删除。
* public boolean contains(E e): 判断当前集合中是否包含给定的对象。
* public boolean isEmpty(): 判断当前集合是否为空。
* public int size(): 返回集合中元素的个数。
* public Object[] toArray(): 把集合中的元素,存储到数组中。
*/
public class Demo01Collection {
public static void main(String[] args) {
demo01();
}
public static void demo01(){
// 创建集合对象,可以使用多态
// Collection
文章标题:JavaSE进阶--Collection集合
文章链接:http://soscw.com/index.php/essay/73537.html