我有一个国际象棋益智游戏。
我想在枚举中设置错误的方块。
enum 1000H1wrong {11, 13, 15 21, 22};
我可以检查一下 ENTIRE 枚举 1000H1 中是否有一个数字是错误的。
if chesssquare == enum 1000H1wrong { }
与此相同:
if ((chesssquare == 11) || (chesssquare == 13) || (chesssquare == 15) || (chesssquare == 21) || (chesssquare == 22)) { }