【Java】学习路径61-“伪”枚举类型

Posted on 2022-05-15 21:54  罗芭Remoo  阅读(25)  评论(0编辑  收藏  举报
public class RolyType {
    public static final int TEACHER = 0;
    public static final int STUDENT = 1;
    public static final int CHEF = 2;
    
}

 

public class EnumType {
    public static void main(String[] args) {
        //0老师 1学生 2厨师
        int role1 = RolyType.TEACHER;//role=0
        //等效于int role1 = 0;
    }
}

我们可以手动创建,下一章,我们使用真正的枚举类型,比这个更方便。