4

问题是当我将正方形 JPanel 的背景颜色设置为 square.setBackground(colors[j]) 时,正方形仅绘制颜色列表中的第一种颜色,而不显示其他 3 种颜色。这是我的代码:

import java.awt.*;
import java.util.*;
import javax.swing.*;
import java.awt.*;

@SuppressWarnings({ "unused", "serial" })

public class RegionPartition extends JFrame
{
    JLayeredPane layeredPane;
    JPanel regionBoard;
    JLabel regionPiece;

    private static int DELAY = 200;

    private Color[] colors = new Color[]{Color.PINK, Color.GREEN, Color.BLACK, Color.RED};

    public RegionPartition()
    {
        Dimension boardSize = new Dimension(500, 500);

        //  Use a Layered Pane for this this application
        layeredPane = new JLayeredPane();
        getContentPane().add(layeredPane);
        layeredPane.setPreferredSize(boardSize);

        regionBoard = new JPanel();

        layeredPane.add(regionBoard, JLayeredPane.DEFAULT_LAYER);

        regionBoard.setLayout( new GridLayout(4, 4) );

        regionBoard.setPreferredSize( boardSize );
        regionBoard.setBounds(0, 0, boardSize.width, boardSize.height);

        Random random = new Random();


        for (int i = 0; i < 16; i++) {          
            JPanel square = new JPanel(new BorderLayout());
            square.setBorder(BorderFactory.createLineBorder(Color.black));
            regionBoard.add( square );  

            square.setBackground(Color.green);

            int j=0;

            square.setBackground(colors[j]);

            j++;
        }
    }

    {
        JPanel panel = new JPanel()  
        {  
            Clients[] c = new Clients[128];

            Random random = new Random();

            private final int SIZE = 450;
            private int DELAY = 9999999;
            public void paintComponent (Graphics g)
            {
                super.paintComponent(g);

                for (int i=0; i<c.length; i++)
                {
                    int x = ( int ) ( random.nextFloat() * SIZE ) + 10;
                    int y = ( int ) ( random.nextFloat() * SIZE ) + 10;

                    g.drawOval( x, y, 10, 10 );
                    g.fillOval(x, y, 10, 10);
                }

                for (int j=0; j<DELAY; j++)
                {
                    repaint();
                }
            }
        };  

        panel.setOpaque(false);  

        //Set the glass pane in the JFrame  
        setGlassPane(panel);  

        //Display the panel  

        panel.setVisible(true);  
    }

    public static void main(String[] args)
    {
        JFrame frame = new RegionPartition();

        frame.setDefaultCloseOperation(DISPOSE_ON_CLOSE );
        frame.pack();
        frame.setResizable(true);
        frame.setLocationRelativeTo( null );
        frame.setVisible(true);

    }

    protected void paintComponent(Graphics g)
    {
        // TODO Auto-generated method stub
    }
}
4

3 回答 3

5

那是因为您总是在每次迭代时将 j 设置为 0:

    int j=0;

    square.setBackground(colors[j]);

    j++;

您可能想要将 j 更改为 i 或执行嵌套循环,这取决于您在这里真正想要做什么。

如果你想让所有 16 个方块都以类似网格的方式具有所有四种颜色,你可能希望将循环更改为:

     for (int i = 0; i < 16; i++) {          
        JPanel square = new JPanel(new GridLayout(2,2));
        square.setBorder(BorderFactory.createLineBorder(Color.black));
        regionBoard.add( square );  



        for(int j=0; j<4; ++j){
          JPanel insideSquare = new JPanel();
          insideSquare.setBackground(colors[j]);
          square.add(insideSquare);
        }
    }
于 2012-08-29T13:01:13.727 回答
4

color因为您的数组中只有 4 种颜色,但您的循环索引超过了这个,您可以使用:

square.setBackground(colors[ i % colors.length]);

交替你的方块的颜色。

于 2012-08-29T13:10:31.947 回答
3

您在 for 循环的范围内进行实例化int j,因此它的值不会在多次迭代中保留。您应该在代码中的某个位置声明它,以使其作用于整个 for 循环。

int j = 0;
<for loop>
    square.setBackground(colors[j]);
    j++;
<end for>

但是,在这种情况下,您j的目的是用作数组索引。完全删除会更正确,而是执行以下操作:iij

    square.setBackground(colors[i]);
于 2012-08-29T13:01:30.577 回答