ヘッダーファイル
#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();}
エラーが発生します。なぜエラーが発生するのですか?戻り値を使用できません。回答ありがとうございます。