0

私は単純なJFrameウィンドウを作成していて、Windowsタスクマネージャーでメモリ使用量を確認していました.最大ボタンではなくマウスポインタを使用してJFrameのサイズを変更しようとすると、51,000kから400,000kに多くのメモリが追加され、ダウンすることはありませんが、最大ボタンを使用すると、メモリが追加されませんでした。

多くのメモリを追加し、ダウンしない原因は何ですか?

Image bg = new ImageIcon(getClass().getResource("circle.png")).getImage();
    JFrame jf = new JFrame("MySqlConnections");
    jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    jf.setSize(400,400);
    jf.setIconImage(bg);
    new ConnectMysql(jf);
    jf.setLocationRelativeTo(null);
    jf.setPreferredSize(new Dimension(xFrame, yFrame)); 
    jf.setMinimumSize(jf.getPreferredSize());
    jf.setVisible(true);


public static void main(String[] args) {
    new MainFrame();
     /* Total number of processors or cores available to the JVM */
    System.out.println("Available processors (cores): " + 
        Runtime.getRuntime().availableProcessors());

    /* Total amount of free memory available to the JVM */
    System.out.println("Free memory (bytes): " + 
        Runtime.getRuntime().freeMemory());

    /* This will return Long.MAX_VALUE if there is no preset limit */
    long maxMemory = Runtime.getRuntime().maxMemory();
    /* Maximum amount of memory the JVM will attempt to use */
    System.out.println("Maximum memory (bytes): " + 
        (maxMemory == Long.MAX_VALUE ? "no limit" : maxMemory));

    /* Total memory currently in use by the JVM */
    System.out.println("Total memory (bytes): " + 
        Runtime.getRuntime().totalMemory());

    /* Get a list of all filesystem roots on this system */
    File[] roots = File.listRoots();

    /* For each filesystem root, print some info */
    for (File root : roots) {
      System.out.println("File system root: " + root.getAbsolutePath());
      System.out.println("Total space (bytes): " + root.getTotalSpace());
      System.out.println("Free space (bytes): " + root.getFreeSpace());
      System.out.println("Usable space (bytes): " + root.getUsableSpace());
    }

}
4

1 に答える 1

1

段階的にサイズを変更すると、メモリが追加される可能性があり、フレーム全体を何度も再描画する必要があります。メモリを解放するスコープがあるときはいつでもすぐに実行されないガベージ コレクターに依存しているため、ダウンしないのはなぜですか。

于 2013-05-12T07:23:40.423 に答える