Page List

Search on the blog

2014年8月31日日曜日

C++11でint、string間の変換が簡単になった

C++11でint、string間の変換が簡単に出来るようになっていた。
これは楽だ。
#include <iostream>

using namespace std;

int main(int argc, char **argv) {
    
    int n = 123456789;
    string s = to_string(n);
    int m = stoi(s);

    cout << s << endl;    // 123456789
    cout << m << endl;    // 123456789

    return 0;
}

0 件のコメント:

コメントを投稿