Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
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, 2073👍, 0💬
Popular Posts:
Explain all parts of a deployment diagram? Package: It logically groups element of a UML model. Node...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
Which bit wise operator is suitable for turning on a particular bit in a number? The bitwise OR oper...
How can we know the number of days between two given dates in PHP? Simple arithmetic: <?php $...
What will be printed as the result of the operation below: main() { int a=0; if (a==0) printf("Cisco...