我正在尝试使用 stoi
将字符串转换为整数,但是它说它没有声明。我有标准库和 <string>
包括在内,但它仍然说 [Error] 'stoi' was not declared in this scope
代码如下:
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string>
using namespace std;
int main()
{
string end, init;
cout << "Introduction" << endl;
cout << "Start time (xx:yy)" << endl;
cin >> init;
string hours0 = init.substr(0,2);
int hours = stoi(hours0);
cout << hours << endl;
system("pause");
return 0;
}
请告诉我为什么它不起作用,或者给我第二个选择。
原文由 user3258512 发布,翻译遵循 CC BY-SA 4.0 许可协议
std::stoi
是在 C++11 中引入的。确保您的编译器设置正确和/或您的编译器支持 C++11。