演示Collection接口API介绍

/**
 *演示Collection接口API介绍 
 */
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;


public class TestCollection {


public static void main(String[] args) {

//加了泛型
Collection<String> c = new ArrayList<String>();
c.add("tom");
c.add("lily");
c.add("kate");
//c.add("hello");


//没有加泛型
Collection c2 = new ArrayList();
c2.add("hello");
c2.add(3);
c2.add(new Date());
c2.addAll(c);//把其他集合一次性添加到本集合

System.out.println(c2);

boolean b = c2.contains(new String("hello"));//equals判断
System.out.println(b);

System.out.println(c2.containsAll(c));//equals判断

System.out.println(c2.isEmpty());

c2.remove(new String("hello"));//equals判断
System.out.println(c2);

//求交集
//c2.retainAll(c);
//System.out.println("求交集之后:"+c2);

//删除一组元素
c2.removeAll(c);//equals判断
System.out.println(c2);
System.out.println(c);

System.out.println("元素的个数:"+c2.size());

//集合転数组
Object[] arr = c2.toArray();
System.out.println("転为数组后取第0个元素:"+arr[0]);

//転成指定类型数组,前提是加了泛型限制
String[] ss = c.toArray(new String[0]);
System.out.println("転为数组后取第0个元素:"+ss[0]);


c2.clear();
System.out.println(c2);
System.out.println(c2.isEmpty());
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值