| Author |
byte array and garbage collection
|
Pho Tek
Ranch Hand
Joined: Nov 05, 2000
Posts: 757
|
|
|
My program spawns many threads. Each thread will allocate a byte array of size 100,000. Do I need to null the array within each worker thread as they are about to die ?
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12929
|
|
An object becomes eligible for garbage collection when there is no live thread that holds a reference to the object. Setting variables to null in a thread that's going to stop immediately after that doesn't help anything for garbage collection.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: byte array and garbage collection
|
|
|