我在整个网站上看得很透彻,无法找到解决我的独特问题的方法。
编译器不断调出“No operator”>>“匹配这些操作数”。当我尝试使用这段代码时的消息:
void readCustomerInfo()
{
ifstream in_stream;
int i = 0;
in_stream.open("Customers.dat");
string iDTemp;
string fntemp;
string lntemp;
float baltemp;
CustomerStatus stattemp;
int i = 0;
while (in_stream
>> iDTemp
>> fntemp
>> lntemp
>> baltemp
>> stattemp)
{
CCustomer temp(iDTemp, fntemp, lntemp, baltemp, stattemp);
customers[i] = temp;
i++;
}
红色错误行仅出现在>>下这是在stattemp之前。
CustomerStatus是一个如下所示的枚举:
enum CustomerStatus
{
INACTIVE,
ACTIVE,
};
CCustomer是一个班级。
我已经尽力解决这个问题,并且请了很多人,但我似乎无法解决这个错误。
感谢您的帮助。
答案 0 :(得分:0)
编译器不知道如何将文件中的输入转换为枚举类型,因此您需要某种方式来执行此操作。该错误是由于它不知道如何应用>>它正在获得的数据。