JFrame 示例
package test;
import javax.swing.JFrame;
public class Hello{
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setResizable(false);
frame.setTitle("细胞自动机");
//frame.add(view);
frame.pack();
frame.setVisible(true);
}
}