Collection中的方法

以ArrayList为例

 package com.mydemo;

 import java.util.ArrayList;

 public class CollectionDemo {
public static void main(String[] args) {
// 创建集合对象
//Collection c = new Collection();//Collection是接口,不能实例化
Collection c = new ArrayList();// 多态,父类引用子类对象
//boolean add(E e):添加元素
c.add("hello"); //因为ArrayList允许重复,所以永远可以添加成功
//void clear():清空集合
c.clear() //判断集合中是否包含指定元素:boolean contains(Object o)
System.out.println(c.contains("hello")); //如果集合中有hello,返回true //是否为空:boolean isEmpty()
System.out.println(c.isEmpty()); //删除元素:boolean remove(Object o)
System.out.println(c.remove("hello")); //返回集合元素个数:int size()
System.out.println(c.size()); //将集合转换成一个Object类型的数组:Object[] toArray()
Object[] objs = c.toArray();
for(int i = 0; i<objs.length; i++){
System.out.println(objs[i]);
} System.out.println(al);
} }
上一篇:如何重命名MongoDB中的replica set


下一篇:js不验证