0

当我按“r”时,我试图让这段代码将背景颜色更改为随机颜色。到目前为止,除了将背景颜色更改为随机颜色外,一切正常。这个程序是一个屏幕保护程序,我必须用随机颜色在随机位置生成随机形状。

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

public class ScreenSaver1 extends JPanel {
    private JFrame frame = new JFrame("FullSize");
    private Rectangle rectangle;
    boolean full;

    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        setBackground(Color.BLACK);
    }

    ScreenSaver1() {
        // Remove the title bar, min, max, close stuff
        frame.setUndecorated(true);
        // Add a Key Listener to the frame
        frame.addKeyListener(new KeyHandler());
        // Add this panel object to the frame
        frame.add(this);
        // Get the dimensions of the screen
        rectangle = GraphicsEnvironment.getLocalGraphicsEnvironment()
        .getDefaultScreenDevice().getDefaultConfiguration().getBounds();
        // Set the size of the frame to the size of the screen
        frame.setSize(rectangle.width, rectangle.height);
        frame.setVisible(true);
        // Remember that we are currently at full size
        full = true;
    }

// This method will run when any key is pressed in the window
class KeyHandler extends KeyAdapter {
    public void keyPressed(KeyEvent e) {
        // Terminate the program.
        if (e.getKeyChar() == 'x') {
            System.out.println("Exiting");
            System.exit(0);
        }
        else if (e.getKeyChar() == 'r') {
            System.out.println("Change background color");
            setBackground(new Color((int)Math.random() * 256, (int)Math.random() * 256, (int)Math.random() * 256));
        }
        else if (e.getKeyChar() == 'z') {
            System.out.println("Resizing");
            frame.setSize((int)rectangle.getWidth() / 2, (int)rectangle.getHeight());
        }
    }

}

public static void main(String[] args) {
        ScreenSaver1 obj = new ScreenSaver1();
    }
}
4

2 回答 2

4

setBackground(Color.BLACK);将从您的paintComponent方法中删除

您遇到的另一个问题是您计算随机值的方式......

(int)Math.random() * 256

这基本上是将 的结果Math.random()转换为int,这通常会导致它0在乘以 之前变为 ,2560...

相反,尝试使用类似的东西

(int)(Math.random() * 256)

它将在Math.random() * 256将结果转换为之前执行计算int

您可能还想看看......它会让你的生活变得更加轻松Frame#getExtendedState......Frame#setExtendedState

于 2013-10-08T00:23:35.690 回答
0

尝试这个:

(int)(Math.random() * 256)

或这个:

Random gen= new Random();
getContentPane().setBackground(Color.Black);

要获得随机颜色,请尝试以下操作:

.setBackground(Color.(gen.nextInt(256), gen.nextInt(256),
                gen.nextInt(256));
于 2017-11-14T16:06:21.430 回答