枚举类型案列1

package 枚举类型与泛型;

public class ConstantsTest {
    enum Constants2 {// 将常量放置在枚举类型中
        Constants_A, Constants_B
    }

    // 使用接口定义常量
    public static void doit(int c) {// 定义一个参数为int型的方法
        switch (c) {// 根据常常量的不同作不同的操作
        case Constants.Constants_A:
            System.out.println("doit() Constants_A");
            break;
        case Constants.COnstants_B:
            System.out.println("doit() Constants_b");
            break;
        }
    }

    public static void doit2(Constants2 c) {
        switch (c) {
        case Constants_A:
            System.out.println("doit2() Constants_A");
            break;
        case Constants_B:
            System.out.println("doit2() Constants_B");
            break;
        }
    }
    public static void main(String...strings) {
        ConstantsTest.doit(Constants.Constants_A);//使用接口中定义的常量
        ConstantsTest.doit2(Constants2.Constants_A);//使用枚举类型中的常量
        ConstantsTest.doit2(Constants2.Constants_B);//使用枚举类型中的常量
        ConstantsTest.doit(3);
        //ConstantsTest.doit2(3);
    }
}

运行结果:

doit() Constants_A
doit2() Constants_A
doit2() Constants_B


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值