头文件
#ifndef deneme_h
#define deneme_h
#include <vector>
#include <string>
#include <iostream>
#include <algorithm>
using namespace std ;
class A
{
public:
Course ( int code ) ;
int getACode () ;
private:
int code ;
};
class B
{
public:
B ( A * a = NULL) ;
A * getA () ;
private:
A * a ;
friend ostream & operator<< ( ostream & out , B & b ) ;
};
#endif
A.cpp
#include "deneme.h"
using namespace std ;
A :: A ( int code )
{
this -> code = code;
}
int A :: getACode()
{
return this -> code;
}
B.cpp
#include "deneme.h"
using namespace std ;
B::B ( A * a )
{
this -> a = new A(223);
this -> a = a;
}
A * A::getA () { return this -> a;}
ostream & operator<< ( ostream & out , B & b ) { out << b.course->getACode();}
和 main.cpp
#include "deneme.h"
using namespace std;
int main(){
Course* c1 = new Course(223) ;
Offering* o1_1 = new Offering(c1);
cout<< *o1_1;
return 0;
}
大家好
我想问一下这段代码。上面的代码工作正常,它打印 223。但是当我更改 B.cpp 中的运算符重载部分时
ostream & operator<< ( ostream & out , Offering & offering ) { out << offering.(getCourse() )->getCourseCode();}
我得到一个错误。为什么会报错?我不能使用返回值。感谢您的回答。