What is garbage collection in Java, and how can it be used ?
Answer Posted / jitendra
An application running on a system computer uses some
memory, which makes memory management a significant issue
for any programming language. As Java is comparatively high-
level language, the memory management in Java is automatic.
To make it more efficient, we need to understand garbage
collection, i.e. freeing memory from objects that are no
longer in use.
Garbage collection is the process of automatically freeing
objects that are no longer referenced by the program. This
frees a programmer from having to keep track of when to
free allocated memory, thus preventing many potential bugs
and problems.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is meant by 'bit masking' in java?
Is null an object in java?
What’s the difference between applets and standalone program?
What is the size of an array?
How to Sort Strings which are given in List and display in ascending order without using java api.
How do you sort data in java?
What is time complexity java?
What restrictions are placed on method overriding in java programming?
What is qualitative variable?
Can java object be locked down for exclusive use by a given thread?
What is the difference between a synchronized method and a synchronized block?
What is java english?
There are two classes named classa and classb. Both classes are in the same package. Can a private member of classa can be accessed by an object of classb?
Explain about exception propagation?
explain copyonwritearraylist and when do we use copyonwritearraylist?