当前位置导航:炫浪网>>网络学院>>编程开发>>C++教程>>C++进阶与实例

c++ int转换成string类型 代码

    //第一种方法

 #include <iostream>
#include <string>
using namespace std;

int main()
{
    int n = 65535;
    char t[256];
    string s;

    sprintf(t, "%d", n);
    s = t;
    cout << s << endl;

    return 0;
}

    //第二种方法

 #include <iostream>
#include <string>
#include <strstream>
using namespace std;

int main()
{
    int n = 65535;
    strstream ss;
    string s;
    ss << n;
    ss >> s;
    cout << s << endl;

    return 0;
}

相关内容
赞助商链接