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

查看:16
本文介绍了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;

为我工作.

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

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