public class Main
{
private static boolean SaH=false,LaE=false;
public static void main(String[] args{
//other code
choice1.addActionListener(
new ActionListener() {
public void actionPerformed(ActionEvent e) {
SaH = true;
frame.dispose();
}
}
);
if (SaH==true)
{
// more code
dispose()
当我运行程序时,框架通过该方法消失;但它不会进入 if 语句(SaH
没有改变)。