java练习2

题目要求

  1. 创建一个Color枚举类
  2. 有RED,BLUE,BLACK,YELLOW,GREEN这五个枚举值/对象
  3. Color有三个属性redValue,greenValue,blueValue
  4. 创建构造方法,参数包括这三个属性
  5. 每个枚举值都要给这三个属性赋值,三个属性对应的值分别是
  6. red:255,0,0 blue:0,0,255 black:0,0,0 yellow:255,255,0 green:0,255,0
  7. 定义接口,里面有方法show,要求Color实现该接口
  8. show方法中显示三属性的值
  9. 将枚举对象在switch语句中匹配使用
java 复制代码
package com.shedu.homework;


public class Homework08 {
    public static void main(String[] args) {

        Color[] colors = Color.values();
        for (Color color: colors){
            System.out.print(color);
           color.show();
        }
    }
}

    //1.创建一个Color枚举类
enum Color implements ShowValue{
//2.有RED,BLUE,BLACK,YELLOW,GREEN这五个枚举值/对象
//6.red:255,0,0 blue:0,0,255 black:0,0,0  yellow:255,255,0 green:0,255,0
    RED(255,0,0),BLUE(0,0,255),BLACK(0,0,0),
    YELLOW(255,255,0),GREEN(0,255,0);
//3.Color有三个属性redValue,greenValue,blueValue
    private int renValue;
    private int greenValue;
    private int blueValue;

//4.创建构造方法,参数包括这三个属性

    private Color(int renValue, int greenValue, int blueValue) {
        this.renValue = renValue;
        this.greenValue = greenValue;
        this.blueValue = blueValue;
    }

        public int getRenValue() {
            return renValue;
        }

        public int getGreenValue() {
            return greenValue;
        }

        public int getBlueValue() {
            return blueValue;
        }



        @Override
        public void show() {
            System.out.println("属性为:"+renValue+","+greenValue+","+blueValue);
        }
    }


interface ShowValue{
    public void show();
}
相关推荐
苹果醋324 分钟前
React源码02 - 基础知识 React API 一览
java·运维·spring boot·mysql·nginx
晓纪同学41 分钟前
QT-简单视觉框架代码
开发语言·qt
威桑41 分钟前
Qt SizePolicy详解:minimum 与 minimumExpanding 的区别
开发语言·qt·扩张策略
Hello.Reader44 分钟前
深入解析 Apache APISIX
java·apache
飞飞-躺着更舒服44 分钟前
【QT】实现电子飞行显示器(简易版)
开发语言·qt
明月看潮生1 小时前
青少年编程与数学 02-004 Go语言Web编程 16课题、并发编程
开发语言·青少年编程·并发编程·编程与数学·goweb
明月看潮生1 小时前
青少年编程与数学 02-004 Go语言Web编程 17课题、静态文件
开发语言·青少年编程·编程与数学·goweb
Java Fans1 小时前
C# 中串口读取问题及解决方案
开发语言·c#
盛派网络小助手1 小时前
微信 SDK 更新 Sample,NCF 文档和模板更新,更多更新日志,欢迎解锁
开发语言·人工智能·后端·架构·c#
菠萝蚊鸭1 小时前
Dhatim FastExcel 读写 Excel 文件
java·excel·fastexcel