public class EnumDome {
public static final String SUCCESS = "Y";
public static final String FAIL = "N";
enum State{
SUCCESS("Y"),
FAIL("N");
private final String state;
State(String state){
this.state = state;
}
public String getState(){
return state;
}
}
}
这两种定义常量的方式各有什么特点?在使用过程中更推荐使用何种方式?
添加回答
举报
0/150
提交
取消