比方说,我们有:
char x = 'a';
int y = 1;
所以,如果你运行:
std::cout << x + y;
它打印98而不是’b’.正如我从here看到的那样
<< operator只有int参数实现. 从现在开始,我有两个问题:
> char int操作后返回什么类型?
>为什么没有char参数实现,但是std :: cout<< x仍然按预期工作并打印char值?
最佳答案 感谢
Fefux,
Bo Persson和
Matti Virkkunen的答案是:
>从CPP Reference: Implicit conversions开始:
arithmetic operators do not accept types smaller than
int
as
arguments, and integral promotions are automatically applied after
lvalue-to-rvalue conversion, if applicable.
所以x y的返回类型是int.
> std :: cout有一个运算符<<(char)作为non-member.