我想在没有按位运算符的情况下执行此计算。
unsigned result = (1u << 5);
结果将是32.我知道将二进制文件1
转换为100000
但是我想执行相同的操作而不用按位操作。
答案 0 :(得分:1)
由于你知道2 5 是32,你可以使用:
unsigned int result = 1u * 32u; // or just 32u if it's always '1u *'.
否则,如果您只想使用bitshift值,有两种方法。第一个是循环:
unsigned result = 1u;
for (size_t i = 0; i < 5; result *= 2u, i++);
或非循环版本:
static unsigned int shft[] = {1u, 2u, 4u, 8u, 16u, 32u, ... };
unsigned int result = 1u * shft[5]; // or just shft[5] if it's always '1u *'.