我寫了一個C++代碼如下:C++ set <>類對象。利用自己的比較器給錯誤:C2804:二進制「操作符<」有太多的參數
#include<iostream>
#include<string>
#include<set>
using namespace std;
class data{
int i;
float f;
char c;
public:
data();
data(int i,float f,char c);
};
data::data(int i,float f,char c){
this->i=i;
this->f=f;
this->c=c;
};
class LessComparer{
bool operator<(const data& a1, const data& a2) const{
return(a1.i < a2.i ||
(!(a1.i > a2.i) && (a1.f < a2.f)) ||
(!(a1.i > a2.i) && !(a1.f > a2.f) && (a1.c < a2.c)));
}
};
int main(){
set<data,LessComparer> s;
set<data,LessComparer>::iterator it;
s.insert(data(1,1.3,'a'));
s.insert(data(2,2.3,'b'));
s.insert(data(3,3.3,'c'));
if((it=s.find(data(1,1.3,'a'))!=s.end())
cout<<(*it).i;
cin.get();
return 0;
}
在編譯時這是給第一個錯誤是:
error: C2804: binary 'operator <' has too many parameters
以及LessComparer類中的許多其他錯誤。
我是新來的這種重載。請幫我修改代碼。
謝謝。
請評論新(編輯)的代碼.. – 2012-03-20 08:51:15
@NDThokare no。這是一個完全不同的問題。問一個新問題。 – 2012-03-20 08:53:47
new [question](http://stackoverflow.com/questions/9783866/c-set-of-class-objects-using-own-comparer-giving-junk-of-errors-from-functi)已發佈 – 2012-03-20 09:04:32