Как заставить работать std :: map распределитель - PullRequest
7 голосов
/ 09 июня 2011

У меня очень простой распределитель:

template<typename T>
struct Allocator : public std::allocator<T> {
    inline typename std::allocator<T>::pointer allocate(typename std::allocator<T>::size_type n, typename std::allocator<void>::const_pointer = 0) {
    std::cout << "Allocating: " << n << " itens." << std::endl;
    return reinterpret_cast<typename std::allocator<T>::pointer>(::operator new(n * sizeof (T))); 
    }

    inline void deallocate(typename std::allocator<T>::pointer p, typename std::allocator<T>::size_type n) {
    std::cout << "Dealloc: " <<  n << " itens." << std::endl;
        ::operator delete(p); 
    }

    template<typename U>
    struct rebind {
        typedef Allocator<U> other;
    };
};

Что отлично работает, когда я использую его с: "std :: vector>", однако, когда я пытаюсь использовать его с std :: map, например:

int main(int, char**) {
    std::map<int, int, Allocator< std::pair<const int, int> > > map;

    for (int i(0); i < 100; ++i) {
        std::cout << "Inserting the " << i << " item. " << std::endl;
        map.insert(std::make_pair(i*i, 2*i));
    }

    return 0;
}

Не удается скомпилировать (gcc 4.6), что приводит к очень длинной ошибке, заканчивающейся на: /usr/lib/gcc/x86_64-redhat-linux/4.6.0/../../../../include/c++/4.6.0/bits/stl_tree.h:959:25: error: no match for call to ‘(Allocator<std::pair<const int, int> >) (std::pair<const int, int>::first_type&, const int&)’

Ответы [ 2 ]

16 голосов
/ 09 июня 2011

Поскольку распределитель является 4-м параметром шаблона, тогда как 3-й параметр является компаратором, как std::less?так что std::map<int, int, std::less<int>, Allocator< std::pair<const int, int> > > должно работать.

Также я думаю, что вы должны добавить ctor по умолчанию и скопировать ctor:

  Allocator() {}

  template<class Other>
  Allocator( const Allocator<Other>& _Right ) {}
0 голосов
/ 05 февраля 2018

В случае, если кто-то ищет обобщенный способ:

template<class Key, class T,class Compare = std::less<Key>, class _Ax = Allocator<std::pair<const Key, T> >>
class Map : public std::map<Key, T, Compare, _Ax >
{
};

Тогда используйте его,

Map<int,char> myMap;
myMap.insert<std::pair<int,char>(1,'o');
...