http://www.cnblogs.com/LittleHann/p/3690187.html
public class collectionAddMethod { public static void main(String[] args) { Collection e1 = new ArrayList(); e1.add("====天晴朗====="); e1.add("====暖花儿朵朵绽放====="); e1.add("====暖花儿朵朵绽放====="); e1.add("====暖花儿朵朵绽放====="); e1.add("====暖花儿朵朵绽放====="); e1.add("====暖花儿朵朵绽放====="); System.out.println(e1); Collection e2 = new HashSet(); e2.add("====天晴朗====="); e2.add("====暖花儿朵朵绽放====="); e2.add("====暖花儿朵朵绽放====="); e2.add("====暖花儿朵朵绽放====="); e2.add("====33333====="); e2.add("========="); System.out.println(e2); e2.remove("========="); System.out.println(e2); //SortedSet是抽象的,不能被实例化 //Collection e3 = new SortedSet(); //EnumSet是抽象的,不能被实例化 //Collection e4 =new EnumSet(); Collection e5=new Vector(); ((Vector) e5).add("aaa"); e5.add("==bbb==="); ((Vector) e5).add("===ccc=="); System.out.println(e5); } }
原文地址:https://www.cnblogs.com/qianjinyan/p/10545082.html
时间: 2024-10-05 05:05:44