Home > Java > javaTutorial > body text

What are the common memory leak scenarios in Java?

王林
Release: 2024-04-13 18:39:02
Original
425 people have browsed it

Common memory leak scenarios in Java include: holding references to external objects, static references, invalid listeners, thread-local variables, and circular references. Common memory leak scenarios in application servers include threads holding references to servlet objects, static holders holding references to persistent connections, and listeners not being removed from components.

What are the common memory leak scenarios in Java?

Common memory leak scenarios in Java

Memory leaks are a serious flaw in software development that will develop over time. This can lead to application crashes or performance degradation. The following are the most common memory leak scenarios in Java:

1. Holding a reference to an external object

When an object holds a reference to an external object, The JVM cannot garbage collect external objects when they are not in use. For example:

class Outer {
    private Inner inner;

    public Outer() {
        inner = new Inner();  // 持有对 Inner 的引用
    }
}

class Inner {
    // ...
}
Copy after login

2. Static Reference

Static variables are stored in permanent memory in the JVM and they are never garbage collected. If a static variable holds a reference to an object, the object cannot be garbage collected. For example:

public class Example {
    private static List<Object> objects = new ArrayList<>();

    public static void main(String[] args) {
        objects.add(new Object());
    }
}
Copy after login

3. Invalid Listener

A memory leak occurs when a listener is no longer used but is still attached to an event source. For example:

import javax.swing.*;

public class ListenerLeak {
    private JButton button;

    public ListenerLeak() {
        button = new JButton();
        button.addActionListener(e -> {
            // ...
        });
    }

    // 忘记从按钮中移除监听器
}
Copy after login

4. Thread-local variables

Thread-local variables are stored in the thread-local storage (TLS) of each thread and remain active as long as the thread is active. They will not be garbage collected. If you use thread-local variables in a completed thread, you may cause a memory leak. For example:

public class ThreadLocalLeak {
    private static ThreadLocal<Object> threadLocal = new ThreadLocal<>();

    public static void main(String[] args) {
        Thread thread = new Thread(() -> {
            threadLocal.set(new Object());  // 在线程中设置值
        });
        thread.start();
        thread.interrupt();  // 中断线程

        // 线程局部存储未得到清理
    }
}
Copy after login

5. Circular Reference

A circular reference occurs when two or more objects refer to each other. This causes the JVM to not recognize that they are no longer in use, resulting in a memory leak. For example:

public class CycleReference {
    private CycleReference other;

    public CycleReference() {
        other = new CycleReference();
        other.other = this;  // 循环引用
    }
}
Copy after login

Practical case

Memory leaks in application servers

The following are typical memory leaks in application servers Scenario:

  1. The thread keeps a reference to the servlet object even after the servlet has completed.
  2. Static holders (such as database connection pools) maintain references to persistent connections even if those connections are no longer needed.
  3. The listener was not removed from the component, causing the listener's reference to be retained.

You can reduce the risk of memory leaks in your Java applications by understanding common memory leak scenarios and adopting appropriate coding practices to ensure their stability and performance.

The above is the detailed content of What are the common memory leak scenarios in Java?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!