When the Object created in line1 is ready for garbage collection?. Will it be ready just after line1 ? [ June 11, 2002: Message edited by: Mathew Sam ]
Corey McGlone
Ranch Hand
Joined: Dec 20, 2001
Posts: 3271
posted
0
Yes. There is no reference to the object after that line is executed, so it is eligible for garbage collection after line 1. Corey