gpt4 book ai didi

java - JFrame 不显示使用宽度和高度变量

转载 作者:行者123 更新时间:2023-12-02 02:47:43 25 4
gpt4 key购买 nike

import java.awt.Dimension;
import javax.swing.JFrame;

public class Window {

public Window(int width, int height, String title){
JFrame frame = new JFrame(title);
frame.setPreferredSize(new Dimension(width,height));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);

}
}

public class Driver {
private final static int WIDTH = 500, HEIGHT = 500;

public static void main(String[] args) {
new Window(WIDTH,HEIGHT,"Title");
}

}

最佳答案

不要这样做 frame.setPreferredSize(new Dimension(width,height));,而是尝试这样做。

frame.setSize(宽度,高度);

关于java - JFrame 不显示使用宽度和高度变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44341245/

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