私はJFrameを作成し、ランダムジェネレーターからのRGB値からのランダムな色であるサイズ1x1の長方形を描画しています。コードを実行すると、フレームはすべての長方形を描画しますが、数秒後にフレーム内の長方形が変わります。
Rectangle クラス:
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.util.Random;
import javax.swing.*;
public class RandomRect extends JComponent
{
private static final long serialVersionUID = 1L;
public void paintComponent(Graphics g)
{
Random rand = new Random();
Graphics2D g2 = (Graphics2D) g;
for(int y=1; y<601; y++)
{
for(int x=1; x<1201; x++)
{
float red = rand.nextFloat();
float green = rand.nextFloat();
float blue = rand.nextFloat();
Color randomColor = new Color(red, green, blue);
Rectangle box = new Rectangle(x, y, 1, 1);
g2.setColor(randomColor);
g2.fill(box);
}
}
System.out.println("Finished draw");
}
}
「描き終わり」が2回印刷されています。
RectViewer クラス:
import java.awt.Color;
import javax.swing.*;
public class RectViewer
{
public static void main(String[] args)
{
JFrame frame = new JFrame ();
frame.setSize(1200,600);
frame.setTitle("Using the Rectangle Class");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setBackground(Color.white);
RandomRect rect = new RandomRect();
frame.add(rect);
frame.setVisible(true);
}
}
長方形クラスを2回呼び出すかどうかを確認するためにprintlnを投げましたが、その理由はわかりません! 誰でも助けることができますか?