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

int 和 string 相互转换(简洁版)

时间:2016-06-24 22:17:09      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

string int2str(int x) {
  if (x) return num2str(x/10)+string(1,x%10+‘0‘);
  else return "";
}

 

int str2int(string s) {
  int x = 0;
  for (char it : s)
    x = x*10+it-‘0‘;
  return x;
}

PS:谁还能更短(>.<)

int 和 string 相互转换(简洁版)

标签:

原文地址:http://www.cnblogs.com/wubdut/p/5615343.html

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