-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 に答える