'stoi'未在此范围内声明[C ++]

时间:2015-02-24 18:35:04

标签: c++ c++11 codeblocks

我使用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

0 个答案:

没有答案