1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| public class TestFrame2 { public static void main(String[] args) { MyFrame myFrame1 =new MyFrame(100,100,200,200,Color.blue); MyFrame myFrame2 =new MyFrame(200,100,200,200,Color.yellow); MyFrame myFrame3 =new MyFrame(300,100,200,200,Color.red); MyFrame myFrame4 =new MyFrame(400,100,200,200,Color.gray); } } class MyFrame extends Frame{ static int id=0; public MyFrame(int x, int y, int w, int h, Color color){ super("MyFrame"+(++id)); setBackground(color); setBounds(x,y,w,h); setVisible(true); } }
|