我有两个循环一个接一个地遍历大约 20 个布尔值的数组,并打印每个布尔值的内存地址:
for (int i = 0; i < 20; ++i) {
printf("%p\n", &_boolArray[i]);
}
for (bool b : _boolArray) {
b = true;
printf("%p\n", &b);
}
我希望两个数组的输出完全相同。我得到的是一些不同的东西:
0x102eeefb0
0x102eeefb1
0x102eeefb2
0x102eeefb3
0x102eeefb4
0x102eeefb5
...
0x7fff5ce8b9bf
0x7fff5ce8b9bf
0x7fff5ce8b9bf
0x7fff5ce8b9bf
0x7fff5ce8b9bf
我知道有更好的方法来填充数组(std::fill for one),但我仍然想知道为什么会这样。