本文主要是介绍java_GUI2,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
package GUi;
import java.awt.*;
public class GuI2 {
public static void main(String[] args) {
MyFrame new1 = new MyFrame(100,100,300,100,Color.BLUE);
MyFrame new2 = new MyFrame(220,300,300,100,Color.green);
MyFrame new3 = new MyFrame(330,500,300,100,Color.yellow);
MyFrame new4 =new MyFrame(440,700,300,100,Color.red);
}
}
class MyFrame extends Frame {
// 计数器
static int id = 0;
public MyFrame(int x,int y,int w,int h,Color color){
super("窗口+"+(++id));
setVisible(true);
// 大小
setBounds(x,y,w,h);
// 设置背景
setBackground(color);
}
}
这篇关于java_GUI2的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!