当我尝试使用std :: stoi并尝试编译时,我收到错误消息“stoi不是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,10); cout << "The answer to everything is " << ans << endl; }
不会编译但没有任何错误.