gpt4 book ai didi

c++ - 无符号和有符号整数

转载 作者:搜寻专家 更新时间:2023-10-31 01:32:03 24 4
gpt4 key购买 nike

如果我有一个使用 2 字节 short 和 4 字节 int 的编译器,为什么我的代码的最后两行输出不同?

我知道 x + y 溢出了 short 类型。但是最后两行不同是因为 math 至少有 int 精度,你可以打印出较大的值,还是因为 z 自动转换为 unsigned int 来打印它?

#include <iostream>
using std::cout; using std::endl;

int main() {
unsigned short x = 65'535;
unsigned short y = 1;
unsigned short z = x + y;
cout << x << endl;
cout << y << endl;
cout << z << endl;
cout << x + y << endl;
}

最佳答案

注意对于 cout << x + y , 你正在打印一个 int直接地;对于 arithmetic operator , 在计算之前它们的操作数将是 integral promotion ed,所以 x + y 的结果将是 int .

If the operand passed to an arithmetic operator is integral or unscoped enumeration type, then before any other action (but after lvalue-to-rvalue conversion, if applicable), the operand undergoes integral promotion.

另一方面,zunsigned short ;当 x + y 的结果时(即 int )分配给 z执行隐式转换(并发生溢出)。

关于c++ - 无符号和有符号整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44191953/

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