gpt4 book ai didi

c - 在这种情况下,循环顺序如何影响 C 中的位操作?

转载 作者:太空宇宙 更新时间:2023-11-04 05:44:02 26 4
gpt4 key购买 nike

下面的代码在打印一些十进制数字时看似无限循环。

int main(){
show(0xBADECAFU);
}

void show(unsigned a){
unsigned pos=0;
for(; pos<UINT_MAX; pos++)
printf("%u", (1U<<pos) & a);
}

下面的代码实际上显示了十六进制数的位。为什么第一个程序运行不正常,而第二个程序运行不正常?

int main(){
show(0xBADECAFU);
}

void show(unsigned n){
unsigned pos=31, count=1;
for(; pos!=UINT_MAX; pos--, count++){
printf("%u", n>>pos & 1U);
}

最佳答案

unsigned int 中没有UINT_MAX 位。但是,有 CHAR_BIT * sizeof(unsigned int) 位。

/* nb: this prints bits LSB first */
void show(unsigned a){
unsigned pos=0;
for(; pos < CHAR_BIT*sizeof(unsigned); pos++)
printf("%u", (1U<<pos) & a ? 1 : 0);
}

考虑第二种情况,循环直到 pos 等于 UINT_MAX。这将正确地* 打印出 32 位的 unsigned,假设下溢转到 ~0sizeof(unsigned)至少为 4。

你的第二个例子可以稍微改进一下:

void show(unsigned n){
int pos = (CHAR_BIT * sizeof(unsigned)) - 1;
for(; pos >= 0; pos--) {
printf("%u", (n>>pos) & 1U);
}
}

* 您“打印”这些位的代码很奇怪,在我的示例中我已经修复了它。

关于c - 在这种情况下,循环顺序如何影响 C 中的位操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10343729/

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