gpt4 book ai didi

java - 我的 JFrame 打不开

转载 作者:行者123 更新时间:2023-12-02 03:37:09 24 4
gpt4 key购买 nike

当我尝试在 JGrasp 或 Eclipse 上运行代码时,没有弹出 JFrame。对编码很陌生,但我认为我做的一切都是正确的。

import javax.swing.*;
import java.awt.*;

public class test {

private JFrame f;
private JPanel p;
private JButton b1;
private JLabel lab;

public void test()
{

gui();

}

public void gui()

{

f = new JFrame("This is the title of the JFrame");
f.setVisible(true);
f.setSize(600,400);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

p = new JPanel();
p.setBackground(Color.CYAN);

b1 = new JButton("This is the JButton");
lab = new JLabel("This is the JLabel");

p.add(b1);
p.add(lab);

f.add(p);

}

public static void main (String args []){

new test();

}


}

最佳答案

我同意威士忌蜘蛛,但你的构造函数不应该有返回类型。 public void test() 应更改为 public test()

关于java - 我的 JFrame 打不开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37308837/

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