我有一个jbutton,当我按下它时,我希望我的框架关闭。
这是我的代码,但不起作用
Frame frame=new Frame();
int n = JOptionPane.showConfirmDialog(frame,"Are you sure to exit","Really?",JOptionPane.YES_NO_OPTION);
if(n == JOptionPane.YES_OPTION){
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}