我找到了藏在这个小宝石后面的一个极其恶心的虫子。我知道,根据 C + + 规范,有符号溢出是未定义行为的,但只有当溢出发生时,该值扩展到位宽 sizeof(int)
。根据我的理解,增加一个 abc1的未定义行为不应该像增加一个 abc2那样长。但这并不能解释 c
是如何得到 不可能值的。作为一个8位整数,c
如何保存大于其位宽的值?
// Compiled with gcc-4.7.2
#include <cstdio>
#include <stdint.h>
#include <climits>
int main()
{
int8_t c = 0;
printf("SCHAR_MIN: %i\n", SCHAR_MIN);
printf("SCHAR_MAX: %i\n", SCHAR_MAX);
for (int32_t i = 0; i <= 300; i++)
printf("c: %i\n", c--);
printf("c: %i\n", c);
return 0;
}
SCHAR_MIN: -128
SCHAR_MAX: 127
c: 0
c: -1
c: -2
c: -3
...
c: -127
c: -128 // <= The next value should still be an 8-bit value.
c: -129 // <= What? That's more than 8 bits!
c: -130 // <= Uh...
c: -131
...
c: -297
c: -298 // <= Getting ridiculous now.
c: -299
c: -300
c: -45 // <= ..........