Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Can we force Garbage collection?
Can we force Garbage collection?
✍: Guest
java follows a philosophy of automatic garbage collection, you can suggest or encourage the JVM to perform garbage collection but you can not force it. Once a variable is no longer referenced by anything it is available for garbage collection. You can suggest garbage collection with System.gc(), but this does not guarantee when it will happen. Local variables in methods go out of scope when the method exits. At this point the methods are eligible for garbage collection. Each time the method comes into scope the local variables are re-created.
2013-03-22, 2122👍, 0💬
Popular Posts:
What Happens If One Row Has Missing Columns? - XHTML 1.0 Tutorials - Understanding Tables and Table ...
Rachel opened her math book and found that the sum of the facing pages was 245. What pages did she o...
The object that contains all the properties and methods for every ASP.NET page, that is built is .. ...
How To Get the Uploaded File Information in the Receiving PHP Script? Once the Web server received t...
What is the difference between "calloc(...)" and "malloc(...)"? 1. calloc(...) allocates a block of ...