2012-03-20 42 views
0

我寫了一個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類中的許多其他錯誤。

我是新來的這種重載。請幫我修改代碼。

謝謝。

回答

0

如果您在類中聲明<運算符,則第一個參數將隱含地爲this

要用2個參數聲明它,必須在類的上下文之外進行聲明。

下面將類型LessComparer的對象與data類型的對象進行比較。

class LessComparer{ 
    bool operator < (const data& a2) const{ 
     //... 
    } 
}; 

如果要比較兩個data對象,有兩個參數聲明運營商內部class data或外部類:

class data{ 
public: 
    bool operator < (const data& a2) const{ 
     //... 
    } 
}; 

XOR

class data 
{ 
    //... 
}; 
bool operator<(const data& a1, const data& a2){ 
    //... 
} 
+0

請評論新(編輯)的代碼.. – 2012-03-20 08:51:15

+0

@NDThokare no。這是一個完全不同的問題。問一個新問題。 – 2012-03-20 08:53:47

+0

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

2

LessComparer需要實現運營商()不是運營商<

bool operator()(const data& a1, const data& a2) const 
+0

請評論新(編輯)的代碼.. – 2012-03-20 08:51:23

相關問題