JFrame frame = new JFrame("タイトル"); |
JFrameフレーム= new JFrame(); frame.setTitle("タイトル"); |
import java.awt.Dimension;
import javax.swing.JFrame;
public class Test extends JFrame{
public static void main(String[] args) {
JFrame jframe = new JFrame();
jframe.setTitle("私のタイトル");
jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jframe.setLocationRelativeTo(null);
jframe.pack();
jframe.setVisible(true);
}
}
Please disable your ad blocker and refresh the window to use this website.