码迷,mamicode.com
首页 > 编程语言 > 详细

c++ int string互转

时间:2014-10-23 19:02:09      阅读:166      评论:0      收藏:0      [点我收藏+]

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

1.

    if(i<9){
            monthNumber = "0";
            itoa(i+1,iCharArray,10);
            monthNumber += iCharArray;
        } else {
            itoa(i+1,iCharArray,10);
            monthNumber = iCharArray;
        }    

2.

int转string
int n = 0;
std::stringstream ss;
std::string str;
ss<<n;
ss>>str;
string转int
std::string str = "123";
int n = atoi(str.c_str());

#include "stdafx.h"

#include <string>
#include <sstream>

using namespace std;
void main()
{
    // int 转 string
    stringstream ss;
    int n = 123;
    string str;
    ss<<n;
    ss>>str;
    // string 转 int
    str = "456";
    n = atoi(str.c_str());
}

 

c++ int string互转

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

原文地址:http://www.cnblogs.com/yelongsan/p/4046450.html

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