C ++从1个字符转换为字符串? [英] C++ convert from 1 char to string?

查看:163
本文介绍了C ++从1个字符转换为字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我真的没有找到任何关闭的答案...

I really didn't find any answer that close...

相反的方式很简单,像str [0]

the opposite way is pretty simple like str[0]

但我需要只转换1个字符到字符串...

But I need to cast only 1 char to string...

像这样:

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 return null

感谢

推荐答案

所有

string s(1, c); std::cout << s << std::endl;

std::cout << string(1, c) << std::endl;

string s; s.push_back(c); std::cout << s << std::endl;

为我工作。

这篇关于C ++从1个字符转换为字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆