1. 程式人生 > >工具類——隨機生成顏色

工具類——隨機生成顏色

public class RandomColor {
    /**
     * 隨機生成顏色
     * @return  返回紅綠藍三原色所能調成的任意一種顏色
     */
    public static int getRandomColor() {
        Random random = new Random();
        int r = random.nextInt(256);
        int g = random.nextInt(256);
        int b = random.nextInt(256);
        return Color.rgb(r, g, b);
    }
}