组件类继承图
Container是一个特殊的组件,可以通过add方法添加其他组件进来。
因为WindowListener是一个接口,且其中有7个方法需要复写,非常麻烦 ,使用实现WindowListener接口的抽象类WindowAdapter代替,可以只复写需要的方法。
f.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e)
{
//System.out.println("window closing---"+e.toString());
System.exit(0);
}
});