GCC出现warning: integer constant is too large for 'long' type"

The warning message can be safely ignored, as mb-gcc is not doing anything wrong; the 64-bit computing is in fact correct.

This warning occurs because gcc is strict in syntax and requires LL on the end of such constants. This warning message disappears if the integer is appended with LL.

long long int test = 0x0008888000000000LL;

http://mazaoliang.blog.163.com/blog/static/138455093201151603823383/


你可能感兴趣的:(Integer)