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;
}
}
我们可以手动创建,下一章,我们使用真正的枚举类型,比这个更方便。
手机扫一扫
移动阅读更方便
你可能感兴趣的文章