Java枚举

枚举可以单独声明或者声明在类里面。方法、变量、构造函数也可以在枚举中定义。

public class Main {
    enum COLOR {
        RED, BLUE, YELLOW
    }

    public static void main(final String[] argvs) {
        System.out.println(COLOR.RED);
        COLOR color = COLOR.YELLOW;
        if (color == COLOR.YELLOW)
            System.out.println("666");
    }
}

发表评论

电子邮件地址不会被公开。 必填项已用*标注

开始在上面输入您的搜索词,然后按回车进行搜索。按ESC取消。

返回顶部