本文主要是介绍GUI:多窗口展示,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
public class textFrame2 {public static void main(String[] args) {//展示多个窗口myFrame f1 = new myFrame(100, 100, 200, 200, Color.cyan);myFrame f2 = new myFrame(300, 100, 200, 200, Color.red);myFrame f3 = new myFrame(100, 300, 200, 200, Color.yellow);myFrame f4 = new myFrame(300, 300, 200, 200, Color.lightGray);}static 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:多窗口展示的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!