J'ai besoin de lancer seulement 1 char
à string
. La manière opposée est assez simple comme str[0]
.
Ce qui suit n'a pas fonctionné pour moi:
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.
string(1, c)
cela ne fonctionne pas? C'est la bonne façon de procéder.