JFrame小示例
package com.xxx.xxx; import javax.swing.*; public class MyFrame extends JFrame { public MyFrame() { this.setTitle("MyFrame"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setVisible(true); this.setSize(400, 300); this.setResizable(false); this.setLocationRelativeTo(getOwner()); } public static void main(String[] args) { new MyFrame(); } }