error: ‘stoi’ was not declared in this scope

已经 include 了相应的头文件 string,但是在调用 stoi 函数时提示编译错误:error: ‘stoi’ was not declared in this scope,在谷歌上搜索了一番,原来需要使用 C++11 标准进行编译,改编译命令如下:

g++ filename.cpp -std=c++11

问题解决。

12个评论

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注