【备忘】java匿名内部类实战之关闭JFrame窗口

前言:

关闭JFrame窗口的5种方法 @URL http://www.blogjava.net/yanyan/archive/2009/11/26/303748.html

1.窗口类Xxxx implements WindowListener接口

2.窗口类Xxxx extends WindowAdapter 抽象类

3.间接实现WindowListener接口 

4.使用Anonymous Inner Class 

5.setDefaultCloseOperation(EXIT_ON_CLOSE); 

------------------------------------------------------------------------------------------------------------------------


Frame f=new Frame(); 
f.addWindowListener(new WindowAdapter(){ 
public void windowClosing(WindowEvent e){ 
System.exit(0); 
} 


你可能感兴趣的:(awt)