I have a bunch of Objects in an ArrayList, if I call ArrayList.remove(object) Do I need to do anything else to remove the object from memory? I am
ArrayList
ArrayList.remove(object)
ArrayList.remove removes the object from the array, and then if the object is not referenced to by any other objects, the GC will delete that object.