No Member named stoi in namespace std

user2211678 picture user2211678 · Oct 20, 2013 · Viewed 12.3k times · Source

I am testing out std::stoi function found in the link below: http://en.cppreference.com/w/cpp/string/basic_string/stol
but I got the error:

No Member named stoi in namespace std.

What should I do? Please advise thanks.

P.S: I am using Xcode Ide to do my c++.

#include <iostream>
#include <string>

int main()  {
   std::string test = "45";
   int myint = std::stoi(test);
   std::cout << myint << '\n';
}

Image

no member named stoi in namespace 'std'

error

Answer

LihO picture LihO · Oct 20, 2013

std::stoi is available only since C++11. In case you don't have C++11 support, here's the C++03 solution based on std::istringstream:

std::string test = "45";
std::istringstream is(test);
int myInt;
if (is >> myInt)
    std::cout << myint << std::endl;

you just need to #include <sstream>