public static void main(String[] args) { // TODO code application logic here\ ArrayCollection1 a = new ArrayCollection1(100); ArrayCollection1 c = new ArrayCollection1(100); a.add("a"); a.add("a"); a.add("c"); a.add("b"); a.add("c"); c.add("d"); c.add("a"); c.add("f"); Object[] j = a.toArray(); Object[] k = c.toArray(); System.out.println(Arrays.toString(j)); System.out.println(Arrays.toString(k)); a.xRemove(c); System.out.println(a.toString()); System.out.println(c.toString()); } } public void remove(Object e) { int i = indexOf(e); if (i != -1) { elementData[i] = elementData[--size]; elementData[size] = null; } } public void xRemove(ArrayCollection1 c){ Object[] o = c.toArray(); for(int i=0;i<o.length;i++){ if (!elementData[i].equals(o[i])){ remove(elementData[i]); } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง