155

1charからだけをキャストする必要がありstringます。反対の方法は、 のように非常に単純です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.
4

3 に答える 3

219

すべての

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;

私のために働いた。

于 2013-06-19T21:32:26.620 に答える