Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in Java by (3.5k points)

I just had an interview, and I was asked to create a memory leak with Java.
Needless to say, I felt pretty dumb having no clue on how to even start creating one.

What would an example be?

1 Answer

0 votes
by (46k points)

Here's a great way to build a true memory leak (objects inaccessible by running code yet furthermore stored in memory) in real Java:

  • The application performs a long-running thread (or use a thread supply to leak even quicker).
  • The thread stores a class via an (optionally custom) ClassLoader.
  • The class designates a large part of memory (e.g. new byte[1000000]), reserves a piece of strong evidence to it in a static field, and then stores a reference to itself in a ThreadLocal. Allocating the extra memory is optional (leaking the Class instance is enough), but it will get the leak work that much quicker.
  • The thread clears all references to the system class or the ClassLoader it was loaded from.
  • Repeat.

This serves because the ThreadLocal keeps a reference to the object, which holds a reference to its Class, which in turn holds a reference to its ClassLoader. The ClassLoader, in turn, retains a reference to all the Classes it has placed.

(It was more serious in many JVM implementations, particularly before Java 7, because Classes and ClassLoaders were designated straight into permgen and were nevermore GC'd at all. However, despite of how the JVM works class unloading, a ThreadLocal will still prevent a Class object from being developed.)

A change on this pattern is why application packages (like Tomcat) can flow memory like a sieve if you often redeploy applications that appear to use ThreadLocals in any way. (For the application container uses Threads as defined, and each moment you redeploy the application a new ClassLoader is practiced.)

 here are some example code that shows this behavior in action.

Related questions

0 votes
1 answer
asked Nov 25, 2019 in Java by Anvi (10.2k points)
0 votes
1 answer
asked Dec 2, 2019 by Anvi (10.2k points)
+8 votes
2 answers
asked May 23, 2019 in Java by Rohan (1.5k points)
0 votes
1 answer
0 votes
1 answer
asked Aug 29, 2019 in Java by Nigam (4k points)

Browse Categories

...