C ++运算符重载不起作用

时间:2013-05-12 00:44:55

标签: c++ operator-overloading

我对运算符以及如何重载它们有疑问。有一个代码示例,我正在重载operator<<,但它不起作用。我使用的是课程:

class CStudent{ //class for students and their attributes
    int m_id;
    int m_age;
    float m_studyAverage;

    public:

    CStudent(int initId, int initAge, float initStudyAverage): m_id(initId), m_age(initAge), m_studyAverage(initStudyAverage){}

    int changeId(int newId){
        m_id = newId;
        return m_id;
    }
    int increaseAge(){
        m_age++;
        return m_age;
    }
    float changeStudyAverage(float value){
        m_studyAverage += value;
        return m_studyAverage;
    }
    void printDetails(){
        cout << m_id << endl;
        cout << m_age << endl;
        cout << m_studyAverage << endl;
    }

    friend ostream operator<< (ostream stream, const CStudent student);
};

过载:

ostream operator<< (ostream stream, const CStudent student){
    stream << student.m_id << endl;
    stream << student.m_age << endl;
    stream << student.m_studyAverage << endl;
    return stream;
}

主要方法有:

int main(){

    CStudent peter(1564212,20,1.1);
    CStudent carl(154624,24,2.6);

    cout << "Before the change" << endl;
    peter.printDetails();
    cout << carl;

    peter.increaseAge(); 
    peter.changeStudyAverage(0.3);
    carl.changeId(221783);
    carl.changeStudyAverage(-1.1);

    cout << "After the change" << endl;
    peter.printDetails();
    cout << carl;

    return 0;
}

问题出在哪里?

1 个答案:

答案 0 :(得分:2)

这里的问题是你需要了解什么引用以及std :: ostream和std :: ostream&amp;之间的区别。是

std::ostream& operator<< (std::ostream& stream, const CStudent& student)

相关问题