Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
50  
I would tell them that Java uses a garbage collector, and ask them to be a bit more specific about their definition of "memory leak", explaining that--barring JVM bugs--Java can't leak memory in quite the same way C/C++ can. You have to have a reference to the object somewhere. – Darien Jul 7 '11 at 19:00
17  
Thats quite a good question - I'll have to remember it next time I'm interviewing :-) – Ant Kutschera Jul 7 '11 at 19:05
68  
I find it funny that on most answers people are looking for those edge cases and tricks and seem to be completely missing the point (IMO). They could just show code that keep useless references to objects that will never use again, and at the same time never drop those references; one may say those cases are not "true" memory leaks because there are still references to those objects around, but if the program never use those references again and also never drop them, it is completely equivalent to (and as bad as) a "true memory leak". – ehabkost Jul 22 '11 at 6:14
16  
@Darien: can't believe such Java fanboism in your answer. For a start JVMs do have memory leaks (the Apple JVM leaking memory when you work with BufferedImage, even if you do flush() them, comes to mind) then it's all too easy to create memory leak "by accident". The famous old "Sun VM + Hibernate + Tomcat" SNAFU comes to mind: this one has plagued Java for years (and is not unrelated to the most upvoted answer here). So not only does Java have memory leak, they're also often much worse than in C/C++ because of people like you thinking "nothing to see, Java has no memory leaks". – SyntaxT3rr0r Jul 22 '11 at 11:31
14  
@SyntaxT3rr0r - darien's answer is not fanboyism. he explicitly admitted that certain JVMs can have bugs that mean memory gets leaked. this is different than the language spec itself allowing for memory leaks. – Peter Recore Jul 22 '11 at 15:24
show 18 more comments

40 Answers

1 2

You can create a moving memory leak by creating a new instance of a class in that class's finalize method. Bonus points if the finalizer creates multiple instances. Here's a simple program that leaks the entire heap in sometime between a few seconds and a few minutes depending on your heap size:

class Leakee {
    public void check() {
        if (depth > 2) {
            Leaker.done();
        }
    }
    private int depth;
    public Leakee(int d) {
        depth = d;
    }
    protected void finalize() {
        new Leakee(depth + 1).check();
        new Leakee(depth + 1).check();
    }
}

public class Leaker {
    private static boolean makeMore = true;
    public static void done() {
        makeMore = false;
    }
    public static void main(String[] args) throws InterruptedException {
        // make a bunch of them until the garbage collector gets active
        while (makeMore) {
            new Leakee(0).check();
        }
        // sit back and watch the finalizers chew through memory
        while (true) {
            Thread.sleep(1000);
            System.out.println("memory=" +
                    Runtime.getRuntime().freeMemory() + " / " +
                    Runtime.getRuntime().totalMemory());
        }
    }
}
share|improve this answer

Most of the memory leaks I've seen in java concern processes getting out of sync.

Process A talks to B via TCP, and tells process B to create something. B issues the resource an ID, say 432423, which A stores in an object and uses while talking to B. At some point the object in A is reclaimed by garbage collection (maybe due to a bug), but A never tells B that (maybe another bug).

Now A doesn't have the ID of the object it's created in B's RAM any more, and B doesn't know that A has no more reference to the object. In effect, the object is leaked.

share|improve this answer

If Max heap size is X. Y1....Yn no of instances So,total memory= number of instances X Bytes per instance.If X1......Xn is bytes per instances.Then total memory(M)=Y1 * X1+.....+Yn *Xn. So,if M>X it exceeds heap space . following can be the problems in code 1.Use of more instances variable then local one. 2.Creating instances every time instead of pooling object. 3.Not Creating the object on demand. 4.Making the object reference null after the completion of operation.Again ,recreating when it is demanded in program.

share|improve this answer

In Java a "memory leak" is primarily just you using too much memory which is different than in C where you are no longer using the memory but forget to return (free) it. When an interviewer asks about Java memory leaks they are asking about JVM memory usage just appearing to keep going up and they determined that restarting the JVM on a regular basis is the best fix. (unless the interviewer is extremely technically savvy)

So answer this question as if they asked what makes JVM memory usage grow over time. Good answers would be storing too much data in a HttpSessions with overly long timeout or a poorly implemented in-memory cache (Singleton) that never flushes old entries. Another potential answer is having lots of JSPs or dynamically generated classes. Classes are loaded into an area of memory called PermGen that is usually small and most JVMs don't implement class unloading.

share|improve this answer

I have encountered one issue in tomcat 5.5, 6.0 and later i came to know this is a memory leak. The following Question itself will give you how to create a memory leak in permgen generation

ClassNotFoundException Error in Tomcat 5.5 and Tomcat 6.0

share|improve this answer

Here is a very simple Java program that will run out of space

public class OutOfMemory {

    public static void main(String[] arg) {

        List<Long> mem = new LinkedList<Long>();
        while (true) {
            mem.add(new Long(Long.MAX_VALUE));
        }
    }
}
share|improve this answer
4  
-1 this runs out of memory for sure, because the requirement is to have an infinite amount of memory. I don't call this a memory leak. It is just a stupid program. – rds Jan 17 at 10:59
show 2 more comments

Swing has it very easy with dialogs. Create a JDialog, show it, the user closes it, leak! You have to call dispose() or configure setDefaultCloseOperation(DISPOSE_ON_CLOSE)

share|improve this answer

If you don't use a compacting garbage collector, you can have some sort of a memory leak due to heap fragmentation.

share|improve this answer

You can create a list and fill it until there is no more memory available :

List<String> list = new ArrayList<String>();
while(true) {
    list.add("blablablalblalalbalblalba...");
}
share|improve this answer
8  
that is not a memory leak, just stupid programming – Mat Banik Aug 29 '12 at 22:07
show 1 more comment

It will be OutOfMemory within a second.

public void print() {
    StringBuffer buffer = new StringBuffer();
    double result = 1.0 / 7.0;
    buffer.append(result);
    while (result != 0) {
        result = result % 7.0;
        buffer.append(result);
    }
    System.out.println(buffer.toString());
}
share|improve this answer
4  
Not quite what the OP was asking. This will give you an out of memory exception but a memory leak implies that there is memory being tied up by objects that are of no use anymore. In this example the object tying up memory is the active part of the code. – AmishDave Oct 8 '12 at 15:47
1 2

protected by Brad Larson Apr 15 at 15:25

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.