码迷,mamicode.com
首页 > 其他好文 > 详细

一些语言方面的技巧

时间:2014-09-17 14:54:22      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   div   sp   log   on   

1.数字转string

int x;
string id;
stringstream ss;
ss << x;
ss >> id;

 

2.字符串转数字

int num;
string s;
stringstream ss(s);
ss>>num;
char str[];
sscanf( str, "%d", &num );         // 将字符串转换成整数
sscanf( str, "%f", &floatnum );    // 将字符串转换成浮点数
char str[];
floatnum = atof(str);   // 字符串转浮点数
num = atoi(str);        // 字符串转整数
若字符串为string类型,则要用c_str()方法获取其字符串指针
string str;
floatnum = atof(str.c_str());   // string转浮点数
num = atoi(str.c_str());        // string转整数

 

一些语言方面的技巧

标签:style   blog   color   os   ar   div   sp   log   on   

原文地址:http://www.cnblogs.com/whatbeg/p/3976922.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!