关于JAVA中GUI开发(按钮数组的添加)

JOptionPane joinput = new JOptionPane();
    
        int btnnum = Integer.parseInt(joinput.showInputDialog(null));

        JButton btns[] = new JButton[btnnum];    //定义数组

        for (int i = 0; i < btnnum; i++) {

            btns[i] = new JButton();   //逐个元素定义

            btns[i].setSize(50, 50);

            btns[i].setVisible(true);  //设置可见性

            frame.frameAdd(btns[i]);  //窗体添加元素


你可能感兴趣的:(JAVA,GUI,Button)