注解 & 异常 & 枚举-code

Posted macro-renzhansheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了注解 & 异常 & 枚举-code相关的知识,希望对你有一定的参考价值。


注解





异常



枚举

//定义枚举类
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的主要内容,如果未能解决你的问题,请参考以下文章

EF4 Code First & SQLCE 4.0 - 生成数据库时出现异常

[Java]Java 枚举注解异常和常用类

编程模型&编程思想

Codeforces768B-Code For 1-类似线段树-枚举+单点更新or区间更新

浅谈LCS & LIS

Java--枚举类型(枚举类型介绍 & 定义枚举类型 & 枚举类型的使用 & 枚举类型的注意事项 & 遍历枚举项)