public enum Colour { RED(255, 0, 0), GREEN(0, 255, 0), BLUE(0, 0, 255); int r, g, b; Colour(int r, int g, int b) { this.r = r; this.g = g; ...
確定! 回上一頁