C++ 从 1 个字符转换为字符串?
我只需要将 1 个 char
转换为 string
.相反的方式很简单,比如str[0]
.
I need to cast only 1 char
to string
. The opposite way is pretty simple like str[0]
.
以下对我不起作用:
char c = 34;
string(1,c);
//this doesn't work, the string is always empty.
string s(c);
//also doesn't work.
boost::lexical_cast<string>((int)c);
//also doesn't work.
推荐答案
全部
std::string s(1, c); std::cout << s << std::endl;
和
std::cout << std::string(1, c) << std::endl;
和
std::string s; s.push_back(c); std::cout << s << std::endl;
为我工作.
相关文章