>我使用无符号长整型变量(我使用甚至更长的变量,具有相同的效果)
>我需要能够存储64位整数(sizeof返回8,这很好)
但是,当我尝试转换为1< 63的值,并执行一些简单的按位 *** 作时,我奇怪地似乎正在获得负值.为什么? 我的测试代码:
unsigned long long c = 0; c |= 1l << 56; printf("c = %lld\n",c); c |= 1l << 63; printf("c = %lld\n",c);
输出:
c = 72057594037927936 c = -9151314442816847872
SIDenotes:
>当然,即使我直接做c = 1l< <63,也会发生同样的事情.
>在Mac OS X 10.6上进行的所有测试,并使用Apple的LLVM Compiler 3.0进行编译
有什么建议么?
解决方法 %lld说明符的d部分告诉printf该参数应被视为有符号整数.使用u代替:%llu.从手册页:
总结d,i
The int argument is converted to signed decimal notation.
o,u,x,xThe unsigned int argument is converted to unsigned octal (o),unsigned decimal (u),or unsigned hexadecimal (x and X) notation.
以上是内存溢出为你收集整理的c – 无符号长龙超出范围?全部内容,希望文章能够帮你解决c – 无符号长龙超出范围?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)