我使用GCC COMPILER
在C ++中构建这个简单的应用程序#include <iostream>
#include <string>
using namespace std;
int main()
{
string hello = "90";
int dunno;
dunno = stoi(hello);
cout << dunno << endl;
return 0;
}
但是编译器告诉我'stoi'没有在这个范围内声明,尽管我包含了string.h
以下是我的编译器设置屏幕:http://prntscr.com/69buec