开发平台(Platform): (Ex: Win10, Linux, ...)
Linux
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
GCC
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
#include <stdio.h>
void print_x(unsigned long x)
{
printf("=> 0x%lx\n",x);
}
int main()
{
print_x(0x80000000);
print_x((1<<31));
}
想问为何同样是数字一个不会overflow 一个会??
喂入的资料(Input):
0x80000000
1<<31
最近看到别人写的code都会用1UL << 31应该也是怕overflow ??
预期的正确结果(Expected Output):
=> 0x80000000
=> 0x80000000
错误结果(Wrong Output):
=> 0x80000000
=> 0xffffffff80000000
程式码(Code):(请善用置底文网页, 记得排版)
补充说明(Supplement):