⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testadapter.jaa.txt

📁 pictures查看pictures查看pictures查看pictures查看
💻 TXT
字号:
import java.awt.Frame ;
import java.awt.event.WindowEvent ;
import java.awt.event.WindowAdapter;

public class TestAdapter {
	public static void main (String [] args){
		Frame f = new Frame ("Java GUI");
		f.setSize (150,300);
		MyAdapter m = new MyAdapter ();
		f.addWindowListener (m);
		f.setVisible (true);
		
	}
}

class MyAdapter extends WindowAdapter {

	public void windowClosing (WindowEvent e){
		System.exit (1);
	}
}	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -