我試圖使用插入排序與超載<運算符(不能使用任何庫)的指針向量。 具有包含另一個類,像這樣:無法找到運算符<對於指針類型
class A {
vector<B*> v;
void order();
}
class B {
int id; //each one is unique
virtual double num() {} const;
bool operator<(const B* b2) const;
}
class B1: public B {
double num() {} const;
}
class B2: public B {
double num() {} const;
}
每個孩子都有計算NUM不同的方式,而排序是使用雙由NUM返回的第一個條件,然後ID來完成。 (遺憾的壓痕)
void A::order() {
for (unsigned int p = 1; p < v.size(); p++)
{
ClassB* tmp = v[p];
int j;
for (j = p; j > 0 && tmp < v[j-1]; j--) // Error on this line
v[j] = v[j-1];
v[j] = tmp;
}
}
bool B::operator<(const B* b2) const {
cout << "Operator <\n";
if(this->num()!=b2->num())
return this->num()<b2->num();
return id<d2->id;
}
我不明白爲什麼試圖比較2個三分球時,操作者不會被調用。
什麼是'ClassB'? – jalf