gpt4 book ai didi

java - JFrame 永远不会被垃圾回收

转载 作者:行者123 更新时间:2023-11-29 07:33:08 25 4
gpt4 key购买 nike

我有一个应用程序需要打开多个 JFrames(它是一个日志查看器,有时您需要在单独的窗口中查看一堆日志以进行比较)。

看起来 JVM(OS X 上的 Java 8 update 101)持有对 JFrame 的强引用,这阻止了它被垃圾收集,并最终导致抛出 OutOfMemoryError。

要查看问题,请在最大堆大小为 200 兆字节的情况下运行此问题。每次打开一个窗口,它会消耗 50 兆字节的 RAM。打开三个窗口(使用 150 兆字节的 RAM)。然后关闭三个窗口(调用 dispose),这应该释放内存。然后尝试打开第四个窗口。抛出 OutOfMemoryError 并且第四个窗口未打开。

我看到其他答案说内存会在必要时自动释放以避免用完,但这似乎并没有发生。

package com.prosc.swing;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.NumberFormat;

public class WindowLeakTest {
public static void main(String[] args) {
EventQueue.invokeLater( new Runnable() {
public void run() {
JFrame launcherWindow = new JFrame( "Launcher window" );
JButton launcherButton = new JButton( "Open new JFrame" );
launcherButton.addActionListener( new ActionListener() {
public void actionPerformed( ActionEvent e ) {
JFrame subFrame = new JFrame( "Sub frame" ) {
private byte[] bigMemoryChunk = new byte[ 50 * 1024 * 1024 ]; //50 megabytes of memory

protected void finalize() throws Throwable {
System.out.println("Finalizing window (Never called until after OutOfMemory is thrown)");
super.finalize();
}
};
subFrame.setDefaultCloseOperation( WindowConstants.DISPOSE_ON_CLOSE );
subFrame.add( new JLabel( "Nothing to see here" ) );
subFrame.pack();
subFrame.setVisible( true );
System.out.println( "Memory usage after new window: " + getMemoryInfo() );
}
} );
launcherWindow.add( launcherButton );
launcherWindow.pack();
launcherWindow.setVisible( true );

new Timer( 5000, new ActionListener() {
public void actionPerformed( ActionEvent e ) {
System.gc();
System.out.println( "Current memory usage after garbage collection: " + getMemoryInfo() );
}
} ).start();
}
} );
}

public static String getMemoryInfo() {
NumberFormat numberFormat = NumberFormat.getNumberInstance();
return "Max heap size is " + numberFormat.format( Runtime.getRuntime().maxMemory() ) + "; free memory is " + numberFormat.format( Runtime.getRuntime().freeMemory() ) + "; total memory is " + numberFormat.format( Runtime.getRuntime().totalMemory() );
}
}

最佳答案

如图here ,由于与典型主机对等组件相关的不可恢复分配,存在不可减少的泄漏。在创建和处理 ~103 窗口的过程中,剩余空间约为 2 MB。在您的情况下,主要泄漏是由于 bigMemoryChunk 的保留实例造成的。一种方法是使实例 unreachableWindowListener 中。

this.addWindowListener(new WindowAdapter() {

@Override
public void windowClosing(WindowEvent e) {
bigMemoryChunk = null;
}
});

Why do we need to set bigMemoryChunk = null?

JFrame 无法直接知道程序中的每个实例都有一个关联的 bigMemoryChunk 实例。这样的对象在 unrechable 时符合垃圾回收条件。 ;在这种情况下,bigMemoryChunk 是对数组对象的唯一引用,因此将其设置为 null 使其立即符合以后的垃圾回收条件。

If the JFrame is the only thing holding a reference to bigMemoryChunk…then why don't the JFrame and bigMemoryChunk…both get garbage collected after the window has been disposed?

您可能会混淆 containmentinheritance and composition . JFrame 不是“持有对 bigMemoryChunk 的引用;” JFrame 有一个名为bigMemoryChunk 的实例变量,它包含对数组对象的引用。帧的对等方丢失的少量内存由主机拥有和管理。 bigMemoryChunk 中的大量内存是您的程序的责任。随附的 WindowListener 允许您将数组对象的管理与关闭框架相关联。

下面的配置文件显示了一系列打开的四个子框架;然后每个都关闭,然后是 forced分析器中的垃圾收集。

profile

如简介:

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.text.NumberFormat;

public class WindowLeakTest {

public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
JFrame launcherWindow = new JFrame("Launcher window");
launcherWindow.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
JButton launcherButton = new JButton("Open new JFrame");
launcherButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
JFrame subFrame = new JFrame("Sub frame") {
private byte[] bigMemoryChunk = new byte[50 * 1024 * 1024];

{
this.addWindowListener(new WindowAdapter() {

@Override
public void windowClosing(WindowEvent e) {
bigMemoryChunk = null;
}
});
}

@Override
protected void finalize() throws Throwable {
super.finalize();
System.out.println("Finalizing window.");
}
};
subFrame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
subFrame.add(new JLabel("Nothing to see here"));
subFrame.pack();
subFrame.setVisible(true);
}
});
launcherWindow.add(launcherButton);
launcherWindow.pack();
launcherWindow.setVisible(true);
}
});
}
}

关于java - JFrame 永远不会被垃圾回收,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39437481/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com