class AwtDemo2
{
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("Hello World!");
}
}
class MyWin extends WindowAdapter
{
public void windowClosing(WindowEvent e)//复制这个方法
{
//System.out.println("我关");
System.exit(0);//为什么这里面是0啊????高手指点
}
} |
|