Answer Posted / aravinda reddy
Yes of course, even though garbage collection low priority
threads running in the back ground in jav, there are still
possibilities are there for memory leaks.
Example : Some objects are no longer useful, but some other
objects refers to these objects, in this case garbage
collection process can not reclaim the memory allocated for
unused objects
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is the name of the java compiler?
What is java used for?
What is difference between overloading and overriding in java?
What is the difference between yielding and sleeping?
What is the destroy method?
Do I need java on my pc?
What is the meaning of immutable regarding string?
What is the difference between ArrayList and Vector? which one is better in Java
Can a constructor be made final?
How thread scheduler schedule the task?
Can a constructor be private and how are this() and super() method used with constructor?
What is map java?
Is there any way to find whether software installed in the
system is registered by just providing the .exe file?
I have tried the following code but its just displaying the
directory structure in the registry.
Here the code :
package com.msi.intaller;
import java.util.Iterator;
import ca.beq.util.win32.registry.RegistryKey;
import ca.beq.util.win32.registry.RootKey;
public class RegistryFinder {
public static void main(String... args) throws Exception
{
RegistryKey.initialize(RegistryFinder.class.getResource("jRe
gistryKey.dll").getFile());
RegistryKey key = new RegistryKey(RootKey.HKLM,
"Software\\ODBC");
for (Iterator
What is a text string?
What is a flag value?