使用stoi问题(c ++ 11)

时间:2015-07-25 07:58:20

标签: c++11 mingw codeblocks

  • 我正在使用code :: blocks IDE。我想在我的代码中使用stoi但总是

我接受了这个错误:

'stoi'未在我正在使用的范围内声明    gnu gcc编译器4.8.1,我使用的是c ++ 11,我有64位计算机。

我已在互联网上查看过,并且我已在此页面上进行了更改: http://tehsausage.com/mingw-to-string

我不想用atoi! 但我还不能使用stoi!

#include <iostream>
#include <stdlib.h> 
#include <string> 

using namespace std; 

int main()
{ 
   int temp; 
   string test = "123hello"; 
   temp = stoi(test); 
   cout << temp; 
   return 0; 
}

0 个答案:

没有答案