「C++」stoi()でStringからintに変換するサンプル

2019年4月14日

サンプルコード

#include <stdio.h>
#include <string>
 
int main() {
    std::string cftStr = "5678";
 
    int num;
 
    num = stoi(cftStr);
 
    printf("変換結果:%d\n", num);
 
    return 0;
}

変換結果:5678

C++

Posted by arkgame