1

我有一个示例代码,它只是用一个矩形和几个按钮构建一个 JFrame。我完成了矩形的构建,现在我要放置两个按钮,一个开始 - 顶部,一个停止 - 底部。

我有一切工作,至少它的科学。但是,当我尝试设置开始按钮来运行代码时,什么也没有发生。我试图通过创建一个JFrame来查看是否有错误并且代码是成功的。JFrame 应该使用启动按钮打开,paintComponent()而停止则终止整个事情。

有没有人可以提供一些指导,我已经好几天没睡了,试图弄清楚这一点。

    public static void main (String[] args){
        TwoButtonsRandomRec two = new TwoButtonsRandomRec();
        two.go();
    }

    public void go(){

        JPanel pan = new JPanel(new GridBagLayout());

        START = new JButton("START");
        START.addActionListener(new StartListener());
        STOP = new JButton("STOP");
        STOP.addActionListener(new StopListener());

        pan.add(START);
        pan.add(STOP);

        frame = new JFrame();
        frame.getContentPane().add(BorderLayout.NORTH, START);
        frame.getContentPane().add(BorderLayout.SOUTH, STOP);
        frame.setSize(500,500);       
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    public void GUI(){
        JFrame frame2 = new JFrame();
        frame2.setSize(500,500);       
        frame2.setVisible(true);
    }
    class StartListener implements ActionListener{
        public void actionPerformed(ActionEvent e){
                //frame.getContentPane().add(new DrawPanel());
                //System.exit(0);
                //
            DrawPanel panel = new DrawPanel();

         }
    }

    class StopListener implements ActionListener{
        public void actionPerformed(ActionEvent e){
               System.exit(0);
        }
    }

    /*
     * Panel created
     * rectangle drawn to random sizes
     */
    class DrawPanel extends JPanel{
        public void paintComponent(Graphics g){
                ran = new Random();
                g.setColor(new Color(ran.nextInt(255),+
                ran.nextInt(255),ran.nextInt(255)));
                height = ran.nextInt(getHeight());
                width = ran.nextInt(getWidth());
                x = ran.nextInt(getWidth()-width);
                y = ran.nextInt(getHeight()-height);
                g.fillRect(x,y,width,height);
                //repaint();
            try{
                Thread.sleep(240);
            }catch(InterruptedException ie){
            }   
            repaint();
        }

    }
}
4

1 回答 1

2

这个片段是一个杀手:

class DrawPanel extends JPanel{
        public void paintComponent(Graphics g){
                ran = new Random();
                g.setColor(new Color(ran.nextInt(255),+
                ran.nextInt(255),ran.nextInt(255)));
                height = ran.nextInt(getHeight());
                width = ran.nextInt(getWidth());
                x = ran.nextInt(getWidth()-width);
                y = ran.nextInt(getHeight()-height);
                g.fillRect(x,y,width,height);
                //repaint();
            try{
                Thread.sleep(240);
            }catch(InterruptedException ie){
            }   
            repaint();
        }

    }
  1. 永远不要打电话Thread.sleep(240);给美国东部时间
  2. repaint();永远不要从内部调用,paintComponent因为这将创建一个无限循环
  3. 启动ran一次就足够了,不要一遍又一遍地重新实例化它paintComponent
  4. 将组件添加到框架的方式不正确(Component, int),而不是相反
  5. 使用Java 编码约定,即变量和方法是驼峰式大小写并以小写字母开头。
  6. 如果您已经将按钮添加到面板,那么您只需将该面板添加到框架而不是按钮。否则,这将意味着您的面板毫无用处。
  7. super.paintComponent当你覆盖时不要忘记paintComponent

每当您需要再次绘制组件时(即,您希望以某种方式paintComponent调用 ()),请repaint()在该组件上调用。

于 2013-01-15T14:47:52.440 回答