public class TestFrame01 {
public static void main(String[] args) {
MyFrame myFrame1 = new MyFrame(100,100,200,200,Color.black);
MyFrame myFrame2 = new MyFrame(300,100,200,200,Color.BLUE);
MyFrame myFrame3 = new MyFrame(100,300,200,200,Color.yellow);
MyFrame myFrame4 = new MyFrame(300,300,200,200,Color.gray);
}
}
class MyFrame extends Frame{
static int id = 0;
MyFrame(int x,int y,int w,int h,Color color) {
super(""+(++id));
setVisible(true);
setSize(w,h);
setLocation(x,y);
setBackground(color);
setResizable(true);
}
}
第一个Frame窗口
最新推荐文章于 2024-08-25 21:40:04 发布