gpt4 book ai didi

c++ - CPP 中的++ 运算符是否对 char 有任何重载?

转载 作者:行者123 更新时间:2023-11-30 01:01:51 24 4
gpt4 key购买 nike

运算符++是否有重载来处理char?或者这是事物的流动吗?

++ <char> will lead to the following events: 
a char -> gets converted to int -> ++ increments it -> Gets converted back to char

下面的代码:

char test = 'a';
std::cout << test << std::endl;
std::cout << ++test << std::endl;

输出

a
b
  • 这在内部是如何运作的?++ 运算符是否发生了某种隐式类型转换,或者在 cpp 标准中是否存在 char 的重载。

https://en.cppreference.com/w/cpp/language/operator_incdec说只有算术和迭代器类型有重载。

最佳答案

char 数字,它只是在一些 API 中比较特殊,因此它被呈现为 ASCII 字符(取决于语言环境,但 ASCII 是通用的基本编码) . 'a' 只是拼写 (char)97 的一种便捷方式。所以所有 ++ 所做的就是将 97 递增到 98,并且 std::cout 知道格式化 char 作为具有该序号的 ASCII 字符,'b'

要点是,char 不需要额外的重载,因为它一种算术类型。

关于c++ - CPP 中的++ 运算符是否对 char 有任何重载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57984488/

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