第一个GUI程序,在netbeans里因为没有自动导包,害的我差点崩溃,因为没有导入AWT包,所以
public class Jfram {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
EventQueue.invokeLater(()->{
SimpleFrame frame=new SimpleFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);}
);
}}
class SimpleFrame extends JFrame{
public SimpleFrame(){
setSize(300,200);
}
}
高亮的就是报错语句,上网查了,是为了线程安全,我现在也不太懂这个语法,先记上,
public class Jfram {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
SimpleFrame frame=new SimpleFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);}
}
class SimpleFrame extends JFrame{
public SimpleFrame(){
setSize(300,200);
}
}
事实证明,没有这段语法,程序也是能跑的,应该是为什么线程安全,巴拉巴拉的
书上设置像素大小,非要拿变量存着,setSize方法也是要在函数里调用,可能是因为要函数式编程吧,
问题还是在interlij idea里发现的,因为interlij里自动导包,学习了
手机扫一扫
移动阅读更方便
你可能感兴趣的文章