В настоящее время я использую Visual Studio Community 2017. Изучая стандарты языка С++ в свойствах проекта, они предоставляют только С++ 14 и С++ 17. Поскольку мой код был выполнен для предыдущего назначения с использованием компилятора для С++ 11, я не могу запустить свой код с помощью таких функций, как stoi. Мой вопрос в том, есть ли способ добавить С++ 11 в языковые стандарты для С++?
Я создаю DLL для графического интерфейса, мои инициализации:
#include <string>
#include "stdafx.h"
using namespace std;
Здесь я создаю класс фракции, основные ошибки следуют в ifstream:
istream& operator>>(istream& in, Fraction& f) {
string number;
in >> number; //read the number
size_t delimiter = number.find("/"); //find the delimiter in the string "/"
if (delimiter != string::npos) { //if delimiter is not empty
int n = stoi(number.substr(0, delimiter)); //set numerator from string to integer before the "/"
int d = stoi(number.substr(delimiter + 1)); //set denominator from string to integer after the "/"
if (d == 0) { //if denominator is 0
throw FractionException("Illegal denominator, cannot divide by zero."); //illegal argument throw
}
else if (n == 0 && d != 0) { //numerator is 0, then set values as zero fraction
f.numVal = 0;
f.denVal = 1;
}
else { //set the values into the fraction and normalize and reduce fraction to minimum
f.numVal = n;
f.denVal = d;
f.normalizeAndReduce(f.numVal, f.denVal);
}
}
else { //else if there is no delimiter it would be a single integer
f.numVal = stoi(number);
f.denVal = 1;
}
return in;
}
Я получаю следующие ошибки:
C2679: binary '>>': no operator found which takes a right-hand operator of type 'std::string"
C3861: 'stoi' identifier not found
Этот метод отлично работал в eclipse, не уверен, что я делаю неправильно.