本文链接:https://blog.csdn.net/michaelhan3/article/details/75667066
1、使用用C++的stringstream。
主要原因是操作简单。
1、使用用C++的stringstream。
主要原因是操作简单。
数字转字符串,int float类型 同理
#include <string>
#include <sstream>
#include <sstream>
int main(){
double a = 123.32;
string res;
stringstream ss;
ss << a;
ss >> res;//或者 res = ss.str();
return 0;
}1234567891011
double a = 123.32;
string res;
stringstream ss;
ss << a;
ss >> res;//或者 res = ss.str();
return 0;
}1234567891011
字符串转数字,int float类型 同理
int main(){
string a = "123.32";
double res;
stringstream ss;
ss << a;
ss >> res;
return 0;
}12345678
string a = "123.32";
double res;
stringstream ss;
ss << a;
ss >> res;
return 0;
}12345678
上面方法的优点就是使用简单方便,确定可能会相对别的方法来说慢一点,但是一般少量的数据可以忽略该因素。
2、数字转字符串:
下面方法转自:http://www.cnblogs.com/luxiaoxun/archive/2012/08/03/2621803.html
下面方法转自:http://www.cnblogs.com/luxiaoxun/archive/2012/08/03/2621803.html
使用sprintf()函数
char str[10];
int a=1234321;
int a=1234321;
sprintf(str,”%d”,a);
char str[10];
double a=123.321;
double a=123.321;
sprintf(str,”%.3lf”,a);
char str[10];
int a=175;
int a=175;
sprintf(str,”%x”,a);//10进制转换成16进制,如果输出大写的字母是sprintf(str,”%X”,a)
char itoa(int value, char string, int radix);
同样也可以将数字转字符串,不过itoa()这个函数是平台相关的(不是标准里的),故在这里不推荐使用这个函数。
同样也可以将数字转字符串,不过itoa()这个函数是平台相关的(不是标准里的),故在这里不推荐使用这个函数。
3、字符串转数字:使用sscanf()函数
char str[]=”1234321”;
int a;
sscanf(str,”%d”,&a);
………….
char str[]=”123.321”;
double a;
sscanf(str,”%lf”,&a);
………….
char str[]=”AF”;
int a;
sscanf(str,”%x”,&a); //16进制转换成10进制
int a;
sscanf(str,”%d”,&a);
………….
char str[]=”123.321”;
double a;
sscanf(str,”%lf”,&a);
………….
char str[]=”AF”;
int a;
sscanf(str,”%x”,&a); //16进制转换成10进制
4、使用转换行数:这三个函数的基本思路在遇到字符在非‘0’--‘10’内的字符时抛出异常,否者正常转换
字符串转换为int型atoi(),
字符串转换为long型atol(),
字符串转换为float型atof();
————————————————
原文链接:https://blog.csdn.net/michaelhan3/article/details/75667066
————————————————
原文链接:https://blog.csdn.net/michaelhan3/article/details/75667066
来源:https://www.cnblogs.com/woodyzhu/p/11843419.html