+1 vote
in JAVA by

What is memory leak in Java?

1 Answer

0 votes
by

A memory leak is where an unreferenced object that will never be used again still hangs around in memory and doesnt get garbage collected.

...