私はJavaプログラミングの初心者です
jframe ショーを作成しようとしましたが、うまくいきませんでした
jframe.setVisible(true);
それは動作しません
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);
}