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.
|
|
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:
|
||||
|
|
|
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. |
||||
|
|
|
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. |
||||
|
|
|
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. |
||||
|
|
|
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 |
||||
|
|
|
Here is a very simple Java program that will run out of space
|
|||||
|
|
Swing has it very easy with dialogs. Create a JDialog, show it, the user closes it, leak!
You have to call |
||||
|
|
|
If you don't use a compacting garbage collector, you can have some sort of a memory leak due to heap fragmentation. |
||||
|
|
|
You can create a list and fill it until there is no more memory available :
|
|||||
|
|
It will be
|
|||||
|
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.