What is meant by memory leak?

Showing Answers 1 - 5 of 5 Answers

logeswari rams

  • Sep 5th, 2005
 

Memory leakage occurs due to garbage collection of an object from a list of objects.In case of multithreading,memory leakage occurs during a deadlock.

  Was this answer useful?  Yes

justAnother

  • Nov 15th, 2005
 

Memory leak is when memory used by an object or variable cannot be freed even after the code that created the object/ variable has finished execution.

According to wikipedia:

Memory leaks are often thought of as failures to release unused memory by a computer program. Strictly speaking, it is just unnecessary memory consumption. A memory leak occurs when the program loses the ability to free the memory. A memory leak diminishes the performance of the computer, as it becomes unable to use all its available memory.

(http://en.wikipedia.org/wiki/Memory_leak)

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions