设置64位int中的位

时间:2015-07-12 00:45:09

标签: c++

我试图将64位int中的一组位设置为1。 正如您在主循环中看到的那样,我使用setBit函数将位40到47设置为1。 有一个原因我不明白第16到23位也被设置为1,你可以从程序的输出中看到: 0000000011111111000000000000000000000000111111110000000000000000 我无法在常规int上模仿相同的行为。 BTW我也尝试使用unsigned long long而不是int64_t同样的问题。 我错过了什么?

#include <iostream>
#include <cstdint>
using namespace std;

int64_t x = 0;

 void setBit(int64_t *num, int index)
{
 *num |= (1 << index);
}

bool retreiveBit(int64_t *num, int index)
{
 return *num & (1 << index);
}

int main()
{
 for (int i = 40; i < 48; ++i)
 setBit(&x, i);

 for (int i = 0; i < 64; ++i)
 {
  int digit = retreiveBit(&x, i);
  cout << digit;
 }

 return 0;
}

1 个答案:

答案 0 :(得分:9)

在子表达式中:

Monsters.get(i).draw()

常量(1 << index) 的类型为1,因此此转换是在int中完成的。如果你的int不是64位宽(可能不是),那么这种转变就有不确定的行为。

您需要使用至少64位宽的常量:

int

(您需要在(1LL << index) setBit()函数中执行此操作。