public enum UserStatus {
Normal(1),
Lock(2);
private int value;
private UserStatus(int value)
{
this.value=value;
}
public int getValue(){
return this.value;
}
}
Java定义枚举
2022-03-01 05:18:56
2022-03-01 05:18:56