c – std :: stoi在4.7.2中缺少?

前端之家收集整理的这篇文章主要介绍了c – std :: stoi在4.7.2中缺少?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我尝试使用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;
}

不会编译但没有任何错误.

解决方法

std :: stoi()是 C++11中的新功能,所以你必须确保你编译它:
g++ -std=c++11 example.cpp

要么

g++ -std=c++0x example.cpp
原文链接:https://www.f2er.com/c/114297.html

猜你在找的C&C++相关文章