加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
TankClient03.java 839 Bytes
一键复制 编辑 原始数据 按行查看 历史
周威屹 提交于 2023-04-24 10:26 . 周威屹21008020924坦克大战
package V03;
import java.awt.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
public class TankClient03 extends Frame {
public void paint(Graphics g){
Color c=g.getColor();
g.setColor(Color.RED);
g.fillOval(50,50,30,30);
g.setColor(c);
}
public void launchFrame(){
this.setLocation(300,50);
this.setSize(800,600);
this.setBackground(Color.green);
this.setTitle("TankWar");
this.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
setResizable(false);
setVisible(true);
}
public static void main(String[] args) {
TankClient03 tc=new TankClient03();
tc.launchFrame();
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化