gpt4 book ai didi

c - 1 << 31不能用 'int'类型表示吗?

转载 作者:行者123 更新时间:2023-12-04 09:39:52 25 4
gpt4 key购买 nike

为什么-fsanitize=undefined抛出

runtime error: left shift of 1 by 31 places cannot be represented in type 'int'



在此代码上
uint32_t z;
z = 1 << 31;

最佳答案

使1无符号:

uint32_t z;
z = UINT32_C(1) << 31;

关于c - 1 << 31不能用 'int'类型表示吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53566029/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com