java 为何 无效_Java 为什么添加什么Listener都无效

我用Java写程序,不管是添加MouseListenerActionListenerWindowListener统统无效,但是别人的代码一复制就有效,比如:publicclassStart_n{publicstaticvoidmain(finalString[]args)t...

我用Java写程序,不管是添加MouseListener ActionListener WindowListener统统无效,但是别人的代码一复制就有效,比如:

public class Start_n{

public static void main(final String[] args) throws Exception{

Frame f=new Frame("Numgame比数游戏");

f.setLayout(new GridLayout(2,1));

f.setBackground(Color.white);

Label l=new Label("Qianyunn的比数游戏");

l.setAlignment(Label.CENTER);

Button b1=new Button("点击开始");

b1.addMouseListener(new MouseAdapter(){

@SuppressWarnings("unused")

public void MouseClicked(MouseEvent e){

System.out.println("ML Clicked");

awt_numgame.Start_n.Gaming();

System.out.println("ML触发");

}

});

f.addWindowListener(new WindowAdapter(){

@SuppressWarnings("unused")

public void WindowClosing(WindowEvent e){

System.out.println("WindowClosing");

System.exit(0);

}

});

f.add(l);

f.add(b1);

f.setVisible(true);

f.setSize(100,200);

}

}

点了关闭键,窗口无法关闭,也没有PRINT出文本,怎么回事?

展开

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值