当我尝试使用 std::stoi 并尝试编译它时,我收到错误消息“stoi is not a member of std”。我从命令行使用 g++ 4.7.2,所以它不会是 IDE 错误,我的所有包含都按顺序排列,g++4.7.2 默认使用 c++11。如果有帮助,我的操作系统是 Ubuntu 12.10。有什么我没有配置的吗?
#include <iostream>
#include <string>
using namespace std;
int main(){
string theAnswer = "42";
int ans = std::stoi(theAnswer, 0, 10);
cout << "The answer to everything is " << ans << endl;
}
不会编译。但这并没有什么问题。