Mar 25, 2004 #1 satellite03 IS-IT--Management Joined Dec 26, 2003 Messages 248 Location IN i want to know why JVM automatically collect garbages ? is it to prevents programs from ever running out of memory ?
i want to know why JVM automatically collect garbages ? is it to prevents programs from ever running out of memory ?
Mar 25, 2004 #2 sedj Programmer Joined Aug 6, 2002 Messages 5,610 If you don't garbase collect, you'll run out of RAM. GC is like a bit like dealloc in C - but done for you via object refererences. Upvote 0 Downvote
If you don't garbase collect, you'll run out of RAM. GC is like a bit like dealloc in C - but done for you via object refererences.
Mar 25, 2004 Thread starter #3 satellite03 IS-IT--Management Joined Dec 26, 2003 Messages 248 Location IN ok...thanks Upvote 0 Downvote
Mar 25, 2004 #4 man72 Programmer Joined Dec 12, 2002 Messages 7 Location US You will be also able to specify the heap size while running the application. Upvote 0 Downvote