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

📄 200fc4d7ec14001c16bced549d67331d

📁 java编写的一个坦克大战游戏
💻
字号:
import java.awt.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
public class TankClient extends Frame {

	public void launchFrame()
	{
		this.setLocation(300,300);
		this.setSize(800,600);
		
		this.addWindowListener(new WindowAdapter()
			{
			    public void windowClosing(WindowEvent e)
			   {
				  System.exit(0);
			   }
			
			
			}
		
		);
		
		
		
		
		
		this.setVisible(true);	
	}
	
	
	
	public static void main(String[] args) {
		TankClient tc=new TankClient();
		tc.launchFrame();
	}

}

⌨️ 快捷键说明

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