bool showtype[50];showtype[0x00]=true; showtype[0x01]=true; showtype[0x02]=false; showtype[0x03]=false; showtype[0x04]=false; showtype[0x05]=false; showtype[0x06]=false;简化代码
时间: 2023-10-26 20:06:08 浏览: 54
bool 有趣的代码
可以使用以下代码简化上述代码:
```
bool showtype[50] = {true, true, false, false, false, false, false};
```
这样可以通过一个数组一次性初始化多个变量,并且将数组长度设为50,其中前7个元素被初始化为true或false,而其余的元素默认被初始化为false。
阅读全文