错误:二进制运算符的“无效操作数”<<

时间:2012-03-05 02:28:40

标签: c++ compiler-errors filestreams

我收到以下错误:
类型'char'的无效操作数和未解析的重载函数类型>'二进制'运算符<<'

这是什么意思?

#include <string>
#include <fstream>
using namespace std;

int main()
{
    ifstream inFile;
    inFile.open("records.txt");

    ofstream outFile;
    outFile.open("corrected.txt");

    while (inFile.good())
    {
        string num, temp;
        inFile >> num;
        outFile << temp.at(0)=num.at(9) << temp.at(1)=num.at(8) 
                << temp.at(2)=num.at(7) << temp.at(3)=num.at(6) 
                << temp.at(4)=num.at(5) << temp.at(5)=num.at(4) 
                << temp.at(6)=num.at(3) << temp.at(7)=num.at(2) 
                << temp.at(8)=num.at(1) << temp.at(9)=num.at(0) << endl; 
    // invalid operands of types 'char' and unresolved overloaded function type>'
    // to binary 'operator<<'
    }
    return 0;
}

该程序应该反转已反转的电话号码列表。

1 个答案:

答案 0 :(得分:5)

您需要为表达式加上括号,否则错误的优先顺序会破坏代码。

temp.at(0)=num.at(9)替换为(temp.at(0)=num.at(9)),依此类推。然后它将编译。

    outFile << (temp.at(0)=num.at(9)) << (temp.at(1)=num.at(8))
            << (temp.at(2)=num.at(7)) << (temp.at(3)=num.at(6))
            << (temp.at(4)=num.at(5)) << (temp.at(5)=num.at(4))
            << (temp.at(6)=num.at(3)) << (temp.at(7)=num.at(2))
            << (temp.at(8)=num.at(1)) << (temp.at(9)=num.at(0)) << endl;