0

我有以下编译器错误,我该如何解决?

error:  instantiated from `_Tp& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const _Key&) [with _Key = ar, _Tp = int, _Compare = std::less<ar>, _Alloc = std::allocator<std::pair<const ar, int> >]' 

这是代码:

#include <map>
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstdlib>

using namespace std; 

class ar { 
  public:
  int a;
  int b;
  int c;
public:
  ar() : a(0), b(0), c(0) {}
};

int main() {
   map<ar, int> mapa;
   ar k;
   k.a = 6;
   k.b = 1;
   k.c = 0;
   mapa[k] = 1;

   //system("pause");
   return 0;
 }
4

3 回答 3

1

你需要一个比较函数map。您可以创建operator<比较 的两个实例ar,也可以创建自定义函数并将其作为第三个模板参数传递。

前者的一个例子可能是:

class ar {
  ...
  bool operator<(const ar& rhs) const {
    return std::tie(a,b,c) < std::tie(rhs.a, rhs.b, rhs.c);
  }
  ...
};
于 2013-02-19T21:33:32.353 回答
1

对于std::map您需要重载operator<地图的 Key 类型,因为这就是地图将元素插入其底层容器的方式。

class ar { 
  public:
  int a;
  int b;
  int c;
  public:
  ar() : a(0), b(0), c(0) {}
  bool operator<(const ar& other) const;
  };

bool ar::operator< (const ar& other) const // note the function has to be const!!!
{
   return (other.a < a) && (other.b < b) && (other.c < c); // or some such ordering
}

重载时operator<,最好以类似的方式重载operator>

于 2013-02-19T21:33:59.817 回答
0

operator <必须可用于键类型,或者您应该为映射构造函数提供比较函子。

于 2013-02-19T21:35:48.933 回答