字符char字符串string整数int之间的转换
Posted stephen-jixing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符char字符串string整数int之间的转换相关的知识,希望对你有一定的参考价值。
#include <iostream> #include <string> #include <sstream> using namespace std ; void i2s(int x, string &basic_string) { stringstream ss; ss << x; ss >> basic_string; } void s2i(string &basic_string , int &x ) { stringstream ss; ss << basic_string; ss >> x; } void c2s(char c , string & s){ stringstream stream; stream << c; s = stream.str(); } int main(){ string str = "123"; int c ; s2i(str , c); cout << c ; }
以上是关于字符char字符串string整数int之间的转换的主要内容,如果未能解决你的问题,请参考以下文章