博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[C++] string与int, float, double相互转换
阅读量:6284 次
发布时间:2019-06-22

本文共 4671 字,大约阅读时间需要 15 分钟。

参考:http://blog.csdn.net/candadition/article/details/7342380

 

将string类型转换为int, float, double类型 主要通过以下几种方式:

# 方法一: 使用stringstream

stringstream在int或float类型转换为string类型的方法中已经介绍过, 这里也能用作将string类型转换为常用的数值类型。

Demo:

#include 
#include
//使用stringstream需要引入这个头文件 using namespace std; //模板函数:将string类型变量转换为常用的数值类型(此方法具有普遍适用性) template
Type stringToNum(const string& str) { istringstream iss(str); Type num; iss >> num; return num; } int main(int argc, char* argv[]) { string str("00801"); cout << stringToNum
(str) << endl; system("pause"); return 0;

输入结果 801

 

#方法二:使用atoi()、 atil() 、atof()函数  -----------------实际上是char类型向数值类型的转换

注意:使用 atoi 的话,如果 string s 为空,返回值为0.则无法判断s是0还是空

1. atoi():      int atoi ( const char * str );

说明:Parses the C string str interpreting its content as an integral number, which is returned as an int value.

参数:str : C string beginning with the representation of an integral number.

返回值:1. 成功转换显示一个Int类型的值.  2. 不可转换的字符串返回0.  3.如果转换后缓冲区溢出,返回 INT_MAX orINT_MIN

Demo:

#include 
using namespace std; int main () { int i; char szInput [256]; cout<<"Enter a number: "<

输出

Enter a number: 48

The value entered is : 48

The number convert is: 48

2.aotl():  long int atol ( const char * str );

说明:C string str interpreting its content as an integral number, which is returned as a long int value(用法和atoi函数类似,返回值为long int)

3.atof():  double atof ( const char * str );

参数:C string beginning with the representation of a floating-point number.

返回值:1. 转换成功返回doublel类型的值 2.不能转换,返回0.0。  3.越界,返回HUGE_VAL

Demo:

/* atof example: sine calculator */  #include 
#include
#include
int main () { double n,m; double pi=3.1415926535; char szInput [256]; printf ( "Enter degrees: " ); gets ( szInput ); //char类型转换为double类型 n = atof ( szInput ); m = sin (n*pi/180); printf ( "The sine of %f degrees is %f\n" , n, m ); return 0; }

 

 

 

 

 

参考:http://blog.csdn.net/candadition/article/details/7342092

C++中不像C#或Java中能直接使用字符串加法将 int类型转换为string类型。C++中进行这样的类型转换需要一些额外的函数。

一、C++的int转string

 #方法一: 使用itoa函数:    char *  itoa ( int value, char * str, int base );                            

说明:Convert integer to string (non-standard function)

参数:

·value : Value to be converted to a string.·str : Array in memory where to store the resulting null-terminated string.·base : Numerical base used to represent the value as a string, between2 and36, where10 means decimal base, 16 hexadecimal,8 octal, and2 binary.

Demo:

#include 
using namespace std; int main(int argc, char* argv[]) { int n = 30; char c[10]; //二进制转换 itoa(n, c, 2); cout << "2-> " << c << endl; //十进制转换 itoa(n, c, 10); cout << "10-> " << c << endl; //十六进制转换 itoa(n, c, 16); cout << "16-> " << c << endl; system("pause"); return 0; }

输出:

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

#方法二: 使用sprintf:   int sprintf ( char * str, const char * format, ... );

参数说明:

% 印出百分比符号,不转换。b 整数转成二进位。c 整数转成对应的 ASCII 字元。d 整数转成十进位。f 倍精确度数字转成浮点数。o 整数转成八进位。s 整数转成字串。x 整数转成小写十六进位。X 整数转成大写十六进位。

Demo:

#include 
#include
using namespace std; int main() { int n = 30; char c[20]; //char *c; //%d十进制 sprintf(c, "%d", n); cout << c << endl; //%o八进制 sprintf(c, "%o", n); cout << c << endl; //%X大写十六进制 sprintf(c, "%X", n); cout << c << endl; //%cACSII字元 sprintf(c, "%c", n); cout << c << endl; //%f浮点数转换 float f = 24.678; sprintf(c, "%f", f); cout << c << endl; //%.2f"保留小数点后面两位 sprintf(c, "%.2f", f); cout << c << endl; //转换两个数 sprintf(c, "%d-%.2f", n, f); cout << c << endl; system("pause"); return 0; }

输出:

30
36
1E
//注:这里是个特殊符号
24.677999
24.68
30-24.68  #方法三:使用stringstream

Input/output string stream class

stringstream provides an interface to manipulate strings as if they were input/output streams.

 
#include 
#include
#include
//引入stringstream头文件using namespace std; int main() { stringstream strStream; int a = 100; float f = 23.5566; //int、float类型都可以塞到stringstream中 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 也是不可移植的。

 

 

 

 

 

 

 

你可能感兴趣的文章
AppScan使用
查看>>
Java NIO框架Netty教程(三) 字符串消息收发(转)
查看>>
Ucenter 会员同步登录通讯原理
查看>>
php--------获取当前时间、时间戳
查看>>
Spring MVC中文文档翻译发布
查看>>
docker centos环境部署tomcat
查看>>
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
java 用反射简单应用,将Object简单转换成map
查看>>