-
wrote on 18 Apr 2018, 15:14 last edited by
Hello,
Trying to convert string to int in QT:
#include <string> std::string g = std::to_string(4);
Compiler shows error:
error: 'to_string' is not a member of 'std'
Why? How to fix it?
-
wrote on 18 Apr 2018, 15:41 last edited by VRonin
this has nothing to do with Qt.
std::to_string
is C++11, you have to make sure you have a recent enough compiler and to enable C++11 features. If you use Qt Creator you should addCONFIG += c++11
in your .pro file and re-run qmakeAlternatively you can
#include <sstream>
and usestd::stringstream gstream; gstream << 4; std::string g=gstream.str();
1/2