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

数字与字符串的相互转换

时间:2020-03-06 00:55:46      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:style   nbsp   div   absolute   字符   字符串转数字   string   转换   font   

# 数字转字符串

 

1 int a;
2 string res;
3 stringstream ss;          //定义流ss
4 ss << a;                     //将数字a转化成流ss
5 ss >> res;                  //将流ss转化成字符串
6 return 0;

 

 

# 字符串转数字

 

1 double a;
2 string res= "123.32";
3 stringstream ss;  
4 ss << res;                  
5 ss >> a;
6 return 0;

 

 

 

 

数字与字符串的相互转换

标签:style   nbsp   div   absolute   字符   字符串转数字   string   转换   font   

原文地址:https://www.cnblogs.com/hhyx/p/12424125.html

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