Collection集合的常用功能

  • Post author:
  • Post category:其他


java.util.Collection接口

所有单列集合的最顶层接口,里面定义了所有单列集合共性的方法

任意的单列集合都可以使用Collection接口中的方法

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(); 把集合中的元素,存储到数组中。

package jihe;

import java.util.Collection;
import java.util.LinkedList;

public class jihedemo01 {

	public static void main(String[] args) {
		// 创建集合对象,可以使用多态

		Collection<String> coll = new LinkedList<>();//因为使用了多态,所以Collection的子集合都可以使用这些功能(除了list 和  set)
		System.out.println(coll);// 重写了toString方法

		/*
		 * public boolean add(E e); 把给定的对象添加到当前集合中 。 返回值是一个boolean值,一般都是true
		 */
		boolean b1 = coll.add("张三");
		System.out.println(b1);
		System.out.println(coll);// [张三]
		coll.add("123");
		coll.add("456");
		coll.add("789");
		System.out.println(coll);

		/*
		 * public boolean remove(E e); 把给定的对象在当前集合中删除。
		 * 返回值是一个boolean值,集合中存在元素,他删除元素,这返回true,删除成功 若不存在元素,则删除失败,返回false
		 */
		boolean b2 = coll.remove("999");// false
		System.out.println(b2);
		boolean b3 = coll.remove("789");// true
		System.out.println(b3);

		/*
		 * 
		 * public boolean contains(E e); 判断当前集合中是否包含给定的对象。
		 * 返回值是一个boolean值,集合中若存在该值,则返回true,若不存在,则返回false
		 */

		boolean b4 = coll.contains("777");// false
		System.out.println(b4);
		boolean b5 = coll.contains("456");// true
		System.out.println(b5);

		/*
		 * public boolean isEmpty(); 判断当前集合是否为空。 判断当前集合内是否有值存在,若有者返回false
		 * 没有则返回true
		 */

		boolean b6 = coll.isEmpty();
		System.out.println(coll);
		System.out.println(b6);// flase

		/*
		 * public int size(); 返回集合中元素的个数。
		 */

		System.out.println(coll.size());// 3

		/*
		 * public Object[] toArray(); 把集合中的元素,存储到数组中。 但是集合中任然存在这些元素
		 */

		Object[] arr = coll.toArray();
		for (int i = 0; i < coll.size(); i++) {
			System.out.print(arr[i] + "\t");
		}
		System.out.println();
		System.out.println(coll);

		/*
		 * public void clear();清空集合中所有的元素。
		 */
		System.out.println(coll.size());
		coll.clear();
		System.out.println(coll);
		System.out.println(coll.size());

	}
}



版权声明:本文为weixin_43451058原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。