char x = 'a';int y = 1;
所以,如果你运行:
std::cout << x + y;
它打印98而不是’b’.正如我从here看到的那样
<< operator只有int参数实现. 从现在开始,我有两个问题:
> char int *** 作后返回什么类型?
>为什么没有char参数实现,但是std :: cout<< x仍然按预期工作并打印char值?
>从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.
以上是内存溢出为你收集整理的C .为什么std :: cout << char int打印int值?全部内容,希望文章能够帮你解决C .为什么std :: cout << char int打印int值?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)