c++ int和string的互相转换
Posted co0oder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++ int和string的互相转换相关的知识,希望对你有一定的参考价值。
int转string
1 #include <string> 2 #include <sstream> 3 int n = 0; 4 stringstream ss; 5 string str; 6 ss<<n; 7 ss>>str;
string转int
1 #include <string> 2 std::string str = "123"; 3 int n = atoi(str.c_str());
以上是关于c++ int和string的互相转换的主要内容,如果未能解决你的问题,请参考以下文章