黑马程序员技术交流社区

标题: 事件监听机制问题 [打印本页]

作者: chen20134    时间: 2014-4-1 22:48
标题: 事件监听机制问题
本帖最后由 chen20134 于 2014-4-2 08:50 编辑
  1. import java.awt.*;
  2. import java.awt.event.*;
  3. public class Test
  4. {
  5.         public static void main(String[] args)
  6.         {
  7.                 Frame f=new Frame("MY AWT");
  8.                 f.setVisible(true);
  9.                 f.setSize(500, 400);
  10.                 f.setLocation(300, 200);
  11.                 f.setLayout(new FlowLayout());
  12.                 Button b=new Button("我是一个按钮");
  13.                 f.add(b);
  14.                
  15.                 f.addWindowListener(new WindowAdapter(){
  16.                         public void windowClosing(WindowEvent e)
  17.                         {
  18.                                 System.out.println("closing");
  19.                                 System.exit(0);
  20.                         }
  21.                         public void windowActivated(WindowEvent e)
  22.                         {
  23.                                 System.out.println("我活了。");//为什么这句话没有出现
  24.                         }
  25.                         public void windowOpened(WindowEvent e)
  26.                         {
  27.                                 System.out.println("我被打开了");
  28.                         }
  29.                 });
  30.         }
  31. }
复制代码

程序中的那句程序为什么在我执行程序的时候没有出现??
作者: Engle    时间: 2014-4-1 23:05
void windowActivated(WindowEvent e)
将 Window 设置为活动 Window 时调用。
你可以把你窗口最小化,再打开就会调用了





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2