グル、
次のように定義された 2 つのクラスが与えられた場合 (属性、メソッド、および実装は省略):
struct A { friend std::ostream& operator << (std::ostream& o, const A& c); };
struct B { friend std::ostream& operator << (std::ostream& o, const B& c); };
私は次のようにクラスを使用しました:
ln 1: A *arrayA = new A[10];
ln 2: B *arrayB = new B[10];
ln 3: /* some codes to initialize arrayA and arrayB */
ln 4: for (int i = 0; i < 10; i++) { std::cout << arrayA[i]; } // this work
ln 5: for (int j = 0; j < 10; j++) { std::cout << arrayB[j]; } // this complain
私のコンパイラは、クラス B に対して次のように文句を言います。
error: cannot bind 'std::ostream {aka std::basic_ostream<char>}' lvalue
to 'std::basic_ostream<char>&&'
../lib/gcc/mingw32/4.6.1/include/c++/ostream:581:5 error initializing argument 1
of 'std::basic_ostream<_CharT, _Traits>&
std::operator<<(std::basic_ostream<_CharT, _Traits>&&, const _Tp&)
[with _CharT = char, _Traits = std::char_traits<char>, _Tp = ClsB]
5 行目の何が問題なのかわかりません。メイン プログラムの 5 行目をコメント アウトすると、適切にコンパイルされます。つまり、クラス B の operator<< の定義は構文的に正しいということです。指示と感謝をお願いします。
ヤムホン
- プラットフォーム: 勝利 7
- MinGW32: バージョン 2011-11-08
- GNU メイク 3.82
- G++ バージョン 4.6.1
[編集 1] 私のプログラムには実際には 2 つ以上のクラスがあり、すべてのクラスにはデバッグ用に operator<< がオーバーロードされています。すべてのクラスに同じ署名 (適切な 2 番目の引数を使用) を使用しました。クラス B だけがこのエラーを出します。
[編集2]私のクラスのフルバージョン:
struct CPeople { // this is class B
int age;
int ageGroup;
int zipcode;
int communityID;
int areaID;
int familyID;
int contactID;
int contactType; /* P, D, E, M, H, W */
int state;
int vaccinated; /* 0 = unvac, 1 = vaccinated */
friend std::ostream& operator<< (std::ostream& o, const CPeople& c)
{
o << "CPeople (" << static_cast<void const *>(&c) << "): "
<< "\tAge Group: " << c.ageGroup
<< "\tZip Code: " << c.zipcode
<< "\tCommunityID: " << c.communityID
<< "\tArea ID: " << c.areaID
<< "\tFamily ID: " << c.familyID
<< "\tSchool Type: " << c.contactType
<< "\tContact ID: " << c.contactID
<< "\tState: " << c.state
<< "\tVaccination: " << c.vaccinated;
return (o << std::endl);
}
};
struct CWorkGroup : public CContact { // this is class A
/* to which community this member belongs */
std::vector<long> member_com;
CStatistics statistics;
friend std::ostream& operator<< (std::ostream& o, const CWorkGroup& c)
{
o << "CWorkGroup (" << static_cast<void const *>(&c) << "): ";
o << "avflag = " << c.avflag << "; member: " << c.size();
for (int i = 0; i < c.size(); i++)
{
o << "; (" << i << " = " << c.member[i] << ")";
}
o << std::endl;
return (o << c.statistics);
}
};
使用法 A:
for (int i = 0; i < cntWG; i++) { std::clog << WG[i]; } std::clog << std::endl;
使用法 B (これはエラーです):
CPeople *people_total = new CPeople[cntTotalPop];
for (pIdx = 0; pIdx < cntTotalPop; pIdx++)
{
std::cout << people_total[pIdx];
}