我正在尝试使用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;
}
要么告诉我为什么它不起作用,要么给我第二种选择。
最佳答案
std::stoi
在C++ 11中引入。确保您的编译器设置正确和/或您的编译器支持C++ 11。
关于c++ - 未声明函数stoi,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22084783/