gpt4 book ai didi

c++ - 在 C++ 中作为字符串添加后打印字符

转载 作者:行者123 更新时间:2023-12-01 14:09:57 28 4
gpt4 key购买 nike

我正在尝试打印 'd'作为 C++ 中的字符串。

string s = to_string((char)('a'+ 3));

cout << s << endl;

预期输出: "d"
实际输出: "100"
我无法理解这种行为。
任何帮助将不胜感激。

最佳答案

std::to_string 是一个将整数或浮点值转换为字符串的函数。你不应该在这种情况下使用它。

简单使用

std::cout << 'a' + 3 << std::endl;

或者
char c = 'a' + 3;
std::cout << c << std::endl;

或者,如果您真的希望将结果保存为字符串:
std::string s = std::string{'a' + 3};
std::cout << s << std::endl;

关于c++ - 在 C++ 中作为字符串添加后打印字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60659128/

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