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

将数字转化为字符串,字符串转化为数字

时间:2021-04-14 12:08:49      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ret   rgba   pre   span   style   string   div   col   rgb   

将数字转化为字符串

string tostring(int i)
{
    stringstream ss;
    ss<<i;
    return ss.str();
}

字符串转化为数字

int str2num(string s)
{
    int num;
    stirngstream ss(s);
    ss>>num;
    return num;
}

 

将数字转化为字符串,字符串转化为数字

标签:ret   rgba   pre   span   style   string   div   col   rgb   

原文地址:https://www.cnblogs.com/fionadxt/p/14655240.html

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