list 集合复制总结

方法一:        List l = new ArrayList();          l.add("a");          l.add("b");          l.add("c");         List l2 = new ArrayList(l);          l2.add("d");         System.out.println(l2);         S
相关文章
相关标签/搜索