Collection ArrayList接口

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;

import javax.swing.text.html.HTMLDocument.Iterator;

public class Main {
	public static void main(String[] args) {
		Collection coll = new ArrayList();
		coll.add(1);
		coll.add("A");
		coll.add(2);
		//1.将集合coll2中的元素添加到集合coll中
		Collection coll2 = Arrays.asList(2, "B", 3);
		coll.addAll(coll2);
		System.out.println(coll);
		System.out.println(coll.contains("A"));
//		coll.clear();
		System.out.println(coll.size());
		System.out.println(coll.contains("A"));
		//2.判断coll是否包含coll2中所有元素
		System.out.println(coll);
		System.out.println(coll2);
		System.out.println(coll.containsAll(coll2));
		//3.coll和coll2交集
		coll.add(9);
		System.out.println(coll);
		System.out.println(coll2);
		coll.retainAll(coll2);
		System.out.println(coll);
		//4.删除coll中所有coll2中的元素
		coll.add(10);
		System.out.println(coll);
		System.out.println(coll2);
		coll.removeAll(coll2);
		System.out.println(coll);
		//5.哈希值
		Collection coll3 = new ArrayList();
		coll3.add("A");
		System.out.println(coll3.hashCode());
		//6.将集合转化为数组
		System.out.println(coll2);
		Object[] a = coll2.toArray();
		for (int i = 0; i < a.length; i++) {
			System.out.println(a[i]);
		}
		System.out.println();
	}
}


                
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值