【发布时间】:2013-05-12 00:44:54
【问题描述】:
我有一个关于运算符以及如何重载它们的问题。有一个代码示例,我正在重载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;
}
还有main方法:
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;
}
问题出在哪里?
【问题讨论】:
-
什么不起作用?是否有编译器错误消息或运行时错误?
-
operatorfriend std::ostream & operator<<(std::ostream & stream, CStudent const & student)
-
@pmr 有一个错误我无法编译它
-
@TomKnapen 谢谢它,解决了问题!
-
@ChrisBarlow:所以告诉我们你遇到了什么错误!不要通过隐瞒信息让帮助您变得不必要地困难。