C++ string转int
Posted 软件工程小施同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ string转int相关的知识,希望对你有一定的参考价值。
#include <iostream>
using namespace std;
int main()
cout << "test\\n";
string str = "789";
int num = atoi(str.c_str());
cout << num;
return 0;
以上是关于C++ string转int的主要内容,如果未能解决你的问题,请参考以下文章