gpt4 book ai didi

c++ - 在 C++ 中编写 if then else 语句的更有效方法

转载 作者:太空狗 更新时间:2023-10-29 23:36:16 25 4
gpt4 key购买 nike

我正在为 Nintendo DS 使用 C++ 编写代码,但这应该适用于所有 C++。

我已经知道 switch 语句,但我需要制作一组具有多个参数的 if、then 和 else:

void doSomething(int number)
{
...
}

bool left = true;
bool right = false;
bool top = false;
bool bottom = false;

if (left && top && right)
doSomething(1);
else if (top && right && bottom)
doSomething(2);
else if (left && right && bottom)
doSomething(3);
else if (left && top && bottom)
doSomething(4);

感谢任何帮助。

最佳答案

你可以将这四个 bool 值转换成一个二进制数0..15,然后用一个数组来查找参数,像这样:

int location = (left   ? 1<<0 : 0)
| (right ? 1<<1 : 0)
| (top ? 1<<2 : 0)
| (bottom ? 1<<3 : 0);

现在 location 有一个从 0 到 15 的数字,所以你可以这样做:

int lookup[] = {-1, -1, -1, -1, -1, -1, -1,  1, -1, -1, -1, 3, -1, 4, 2, -1};
int arg = lookup[location];
if (arg != -1) {
doSomething(arg);
}

关于c++ - 在 C++ 中编写 if then else 语句的更有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18007240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com