C++ int转string(stringstream可转更多类型)

一、使用atoi

说明:

itoa(   int   value,   char   *string,   int   radix   );  
    第一个参数:你要转化的int;  
    第二个参数:转化后的char*;  
    第三个参数:你要转化的进制;  

举例:

 1 //-------------------------------------
 2 //功能:C++ int 转 string (使用atoi)
 3 //环境:VS2005
 4 //-------------------------------------
 5 #include "stdafx.h"
 6 #include <iostream>
 7 using namespace std;
 8 int main(int argc, char* argv[])
 9 {
10     int n = 30;
11     char c[10];
12     itoa(n, c, 2);
13     cout << "2-> " << c << endl;
14     itoa(n, c, 10);
15     cout << "16-> " << c << endl;
16     itoa(n, c, 16);
17     cout << "10-> " << c << endl;
18     system("pause");
19     return 0;
20 }

输出:

2-> 11110
16-> 30
10-> 1e

二、使用sprintf

头文件 #include<stdio.h>

语法: int sprintf(string format, mixed [args]...);

返回值:字符串长度(strlen)

转换字符

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

% 印出百分比符号,不转换。

b 整数转成二进位。

c 整数转成对应的 ASCII 字元。

d 整数转成十进位。

f 倍精确度数字转成浮点数。

o 整数转成八进位。

s 整数转成字串。

x 整数转成小写十六进位。

X 整数转成大写十六进位。

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
举例:

 1 //-------------------------------------
 2 //功能:C++ int 转 string (使用sprintf)
 3 //环境:VS2005
 4 //-------------------------------------
 5 #include "stdafx.h"
 6 #include <iostream>
 7 #include <string>
 8 using namespace std;
 9 int main()
10 {
11     int n = 30;
12     char c[20];
13     sprintf(c, "%d", n);
14     cout << c << endl;
15     sprintf(c, "%o", n);
16     cout << c << endl;
17     sprintf(c, "%X", n);
18     cout << c << endl;
19     sprintf(c, "%c", n);
20     cout << c << endl;
21     float f = 24.678;
22     sprintf(c, "%f", f);
23     cout << c << endl;
24     sprintf(c, "%.2f", f);
25     cout << c << endl;
26     sprintf(c, "%d-%.2f", n, f);
27     cout << c << endl;
28     system("pause");
29     return 0;
30 }

输出:

30
36
1E//注:这里是个特殊符号
24.677999
24.68
30-24.68

三、使用stringstream

Linux下编译通过的通用模板(int,double,char[]通过,推荐):

/*
convert other data to string
usage : 
    string str = m_toStr<int>(12345);
*/
template <class T> string m_toStr(T tmp)
{
    stringstream ss;
    ss << tmp;
    return ss.str();
}

  

其他例子:

//-------------------------------------
//功能:C++ int 转 string (使用stringstream)
//环境:VS2005
//-------------------------------------
#include "stdafx.h"
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
{
    stringstream strStream;
    int a = 100;
    float f = 23.5566;
    strStream << a << "----"<< f ;
    string s = strStream.str();
    cout << s << endl;
    system("pause");
    return 0;
}

输出:

100----23.5566

四、其它

1.sprintf可能引起缓冲区溢出,可以考虑使用 snprintf 或者非标准的 asprintf

2.如果是mfc程序,可以使用 CString::Format

3.如果使用boost,则可以直接使用: string s = boost::lexical_cast <string>(a);

4.atoi 也是不可移植的。

五、其它NB方法

//-----------------------------------------------------------------------------------

// 参考引用 :

// http://baike.baidu.com/view/982195.htm?fr=ala0_1_1

// http://baike.baidu.com/view/1295144.htm?fr=ala0_1

// http://pppboy.blog.163.com/blog/static/3020379620085511954382/

//-----------------------------------------------------------------------------------

原文地址:https://www.cnblogs.com/delmory/p/3910888.html