码迷,mamicode.com
首页 > 其他好文 > 详细

注解 & 异常 & 枚举-code

时间:2020-03-14 11:21:49      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:枚举   使用   this   lock   ret   system   public   pre   方式   


注解





异常



枚举

//定义枚举类
public enum SEX_PERSON {
//Enum;
MALE(0){
public boolean isValue0(){
return true;
}
public boolean isValue1(){
return false;
}
},FEMALE(1){
public boolean isValue0(){
return false;
}
public boolean isValue1(){
return true;
}
};
private int i;
SEX_PERSON(int i) {
this.i = i;
}
public int getValue(){
return this.i;
}
/*public void setValue(int i){
this.i = i;
}*/
public boolean isValue0(){
return true;
}
public boolean isValue1(){
return true;
}
}


//使用方式
System.out.println(SEX_PERSON.FEMALE.isValue0());
System.out.println(SEX_PERSON.FEMALE.isValue1());
System.out.println(SEX_PERSON.MALE.isValue0());
System.out.println(SEX_PERSON.MALE.isValue1());

注解 & 异常 & 枚举-code

标签:枚举   使用   this   lock   ret   system   public   pre   方式   

原文地址:https://www.cnblogs.com/macro-renzhansheng/p/12490561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!