Suppose you have references A -> B -> C -> D. When you delete the reference to B from A, you're left with an orphaned chain of Objects B -> C -> D.
Will C and D be garbage collected even though there's no way to get to them (since there's no reference to B)?
I imagine the GC is smart about this and will resolve any such dependencies.
However, I took a look into the source code for the LinkedList class and found something contrary to this belief. I noticed that when a list is clear()ed, all of the references to each link are explicitly set to null, thus making it an O(n) operation. Is there any reason/benefit for doing so?