如何在C中使用uint64_t

时间:2017-03-28 03:57:45

标签: c

#include <stdio.h>
#include <stdint.h>

int main(){
    uint64_t a = 1 << 63;
    /* do some thing */
    return 0;
}
$ gcc -Wall -Wextra -std=c99 test.c -o test  
warning: left shift count >= width of type [-Wshift-count-overflow]

问:uint64_t应该有64位宽,为什么左移位操作会溢出?

1 个答案:

答案 0 :(得分:7)

1int,它在您的平台上只有32位,或者可能是64位但已签名。

首先使用(uint64_t)1 << 631转换为64位无符号整数。 (如果您愿意,可以((uint64_t)1) << 63