枚举类

public enum MoneyType {



RMB(0), DOLLAR(1), POUND(2);
private int type;


private MoneyType(int type) {
this.type = type;
}


public int getType() {
return type;
}


public void setType(int type) {
this.type = type;
}


}

MoneyType type = MoneyType.RMB ;

type.ordinal ;

ordinal 代表 声明 的顺序,从0开始

注意:最后一个实例后是分号;

必须先定义实例

你可能感兴趣的:(枚举类)