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
相關文章
相關標籤/搜索