代码如下:- import java.awt.*;
- import java.awt.event.*;
- class AwtDemo
- {
- public static void main(String[] args)
- {
- Frame f = new Frame("my awt");
- f.setSize(500,400);
- f.setLocation(300,200);
- f.setLayout(new FlowLayout());
- Button b = new Button("我是一个按钮");
- f.add(b);
-
- f.addWindowListener(new MyWin());
- f.setVisible(true);
- //System.out.println("Hellow World");
- }
- }
- class MyWin extends WindowAdapter
- {
- public void windowDlosing(WindowEvent e)
- {
- System.out.println("window closing");
- }
- }
复制代码 在老毕演示过程中,出现的窗体点击关闭按钮时,命令提示符会打印window closing,我用以上代码(没发现区别),命令提示符却不打印,请高手指教。 |