gpt4 book ai didi

java - 设置随机颜色

转载 作者:行者123 更新时间:2023-12-01 19:11:53 24 4
gpt4 key购买 nike

我在使用类常量设置随机颜色时遇到问题。

当我运行该程序时,(这只是代码的一小部分)它给了我

method setColor in class Graphics cannot be applied to given types

我对如何设置颜色很不熟悉,有人可以解释一下吗?

 public static final int COLOR = (int) (Math.random() * 256);

for(int i = 1; i <= count; i++)
{
g.setColor(new Color(COLOR), (COLOR), (COLOR));
g.drawLine(r.nextInt(MIDX), r.nextInt(MIDY), r.nextInt(MIDX), r.nextInt(MIDY));
}

最佳答案

试试这个

g.setColor(new Color(COLOR, COLOR, COLOR));

基本上,这是您尝试调用的 Color Color(int r, int g, int b) 的构造函数。r、g、b 的值范围为 0 到 255。在您的情况下,r、g、b 的值似乎与您使用相同的常量相同。

关于java - 设置随机颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8131401/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com