0
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
未更改)。如何更改按鈕動作偵聽器中的靜態布爾變量?