Posted By:
Viral_Shah
Posted On:
Friday, January 10, 2003 02:56 AM
the garbage collector collects the objects which are NOT BEING REFERED by anybody... the object itself may be refering to some more objects, but if there is no way accessing the object itself, its references also becomes useless.. and thefore, the references are also released.
however, as in your case, the objects refered by the garbage-collect object may be kept alive if they are being refered by some other objects.
regards,