本意是想让两句话都打印出来~
class GUIDemo
{
public static void main(String[] args)
{
Frame f = new Frame("MyFrame");
f.setSize(800,600);
f.setVisible(true);
f.addWindowListener(new WindowAdapter()
{
public void windowActivated(WindowEvent e)
{
System.out.println("text_1");
}
public void windowOpened(WindowEvent e)
{
System.out.println("text_2");
}
});
}
}
但是最终运行时:
只显示"text_1",而没有显示"text_2"
这是为什么?为什么不都显示出来呢~
|