程序中有名为accountType的AccountTypes。现在想当accountType时savings的时候执行一种命令,Chequing的时候执行另一种,Investment的时候执行第三种,所以想用switch来完成,但是Case那里不知道写什么
1 回答
青春有我
TA贡献1784条经验 获得超8个赞
enum AccountTypes { Savings, Chequing, Investment };
AccountTypes oneType;
.....
switch (oneType)
{
case AccountTypes.Savings:
....
break;
case AccountTypes.Chequing:
....
break;
case AccountTypes.Investment:
....
break;
default:
break;
}
添加回答
举报
0/150
提交
取消