概述
先定义接口MyFrame 继承 Frame
在TestFrame02中实现
package com.liner.lesson01;
import java.awt.*;
public class TestFrame02 {
public static void main(String[] args) {
//展示多个窗口
new MyFrame(100,100,200,200,Color.blue);
new MyFrame(300,100,200,200,Color.yellow);
new MyFrame(100,300,200,200,Color.red);
new MyFrame(300,300,200,200,Color.magenta);
}
}
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);
}
}
最后
以上就是欢呼煎蛋为你收集整理的GUI--02开多个窗口的全部内容,希望文章能够帮你解决GUI--02开多个窗口所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复