1. ホーム
  2. c++

[解決済み] C++で1chから文字列への変換は?

2022-03-01 13:24:42

質問

を1つだけ鋳造する必要があります。 char から 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.

解決方法は?

すべて

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;

が動作しました。