如何将字符串转换为字符?
我已经用谷歌搜索了,但我没有找到我所处情况的答案。真的,我正在尝试将 int 转换为 char 但我的编译器不支持 to_string 函数,所以我决定转换为 from int字符串然后字符串到字符。
我正在使用 char[ ][ ] 所以我可以存储整数和字符。
stringstream ss;
ss << j; // j is the integer
string s(ss.str());
ascii_text[1][i] = (char)s;
编辑:
我正在使用 ASCII 字符。
这就是我想要做的。整数a = 10;-> 字符串 s = "10"; -> 字符 c = '10';
如果我找到一种将 int 直接转换为 char 的方法,我会很高兴。