d,GUI初步
版本0.1
功能:
产生一个窗口
掌握:
通过Eclipse建立新的项目
为新的项目指定不同的源代码和输出目录
指定项目所用的JDK版本
通过Eclipse建立新的类
注意:
类名和方法名的命名
1.见名知意
2.类名首字母大写
3.方法名,变量名首字母小写
4.应用驼峰标识
import java.awt.*;
public class TankClient extends Frame{
public void lanchFrame(){
this.setLocation(200, 100);
this.setSize(800, 600);
setVisible(true);
}
public static void main(String[] args) {
TankClient tc = new TankClient();
tc.lanchFrame();
}
}
版本0.2
功能:
添加关闭窗口的事件处理
不允许窗口大小改动
掌握:
匿名类的用法
思考:匿名类的应用场合
类短小、不涉及将来的扩展、不涉及重要的业务逻辑
通过Eclipse重写父类的方法
注意:
没有掌握匿名类的先照抄,不写不行
不影响最后的运行效果
import java.awt.*;
import java.awt.event.*;
public class TankClient extends Frame{
public void lanchFrame(){
this.setLocation(200, 100);
this.setSize(800, 600);
this.setTitle("TankWar");
this.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
setVisible(true);
this.setResizable(false);
}
public static void main(String[] args) {
TankClient tc = new TankClient();
tc.lanchFrame();
}
}
import java.awt.*;
import java.awt.event.*;
public class TankClient 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 lanchFrame(){
this.setLocation(200, 100);
this.setSize(800, 600);
this.setTitle("TankWar");
this.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
setVisible(true);
this.setBackground(Color.GREEN);
this.setResizable(false);
}
public static void main(String[] args) {
TankClient tc = new TankClient();
tc.lanchFrame();
}
}
import java.awt.*;
import java.awt.event.*;
public class TankClient extends Frame{
int x=50, y=50;
public void paint(Graphics g) {
Color c = g.getColor();
g.setColor(Color.red);
g.fillOval(x, y, 30, 30);
g.setColor(c);
y += 5;
}
public void lanchFrame(){
this.setLocation(200, 100);
this.setSize(800, 600);
this.setTitle("TankWar");
this.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
setVisible(true);
this.setBackground(Color.GREEN);
this.setResizable(false);
new Thread(new paintThread()).start();
}
public static void main(String[] args) {
TankClient tc = new TankClient();
tc.lanchFrame();
}
private class paintThread implements Runnable{
public void run() {
while(true){
repaint();
try {
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
}