如何重载并将<
(小于)比较器传递给一组整数对?这是我当前的代码:
class A{
public:
typedef std::pair<int, int> pair_type;
bool operator<(const pair_type& a, const pair_type& b){
if (a.first < b.first) return true;
else if ( (a.first == b.first) && (a.second < b.second) ) return true;
else return false;
}
private:
std::set< pair_type > edge_;
};
如果我尝试编译此代码,则会收到以下错误:
error: 'bool A::operator<(const pair_type&, const pair_type&)' must take exactly one argument
我该如何解决?