gpt4 book ai didi

c++ - 函数返回 -1 和 ~0 之间有很大区别吗?

转载 作者:行者123 更新时间:2023-11-28 02:18:18 26 4
gpt4 key购买 nike

考虑两个简单的函数:

int return0Comp(){
return (~0);
}

int returnNeg1(){
return -1;
}

我知道在二进制补码系统上,~0==-1,但如果系统没有使用它(那会发生吗?*),这两个函数会返回不同的值吗?

最佳答案

标准说 [expr.unary.op.10]

The operand of ~ shall have integral or unscoped enumeration type; the result is the one’s complement of its operand.

我读到 ~ 总是只是反转所有位,所以结果的解释确实应该取决于所使用的表示。

关于c++ - 函数返回 -1 和 ~0 之间有很大区别吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33384050/

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