-5

我是java编程的初学者

我试图让我的 jframe 节目,但它没有

jframe.setVisible(true);

它不起作用

4

1 回答 1

1

我认为您没有正确声明您的 JFrame。这是一个创建简单框架的示例:

public static void main(String[] args)
{
    // Creating a frame
    JFrame frame = new JFrame("Example");
    // Setting the position and the size of the frame
    frame.setBounds(0,0,800,600);
    // This will terminate the program when closing the frame
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    // Then you can display your frame
    frame.setVisible(true);
}
于 2013-03-06T23:23:16.320 回答