我只是尝试使用boost :: pool来查看它是否是我正在使用的东西的更快的分配器,但我无法弄清楚如何将它与boost :: unordered_map一起使用:
以下是代码段:
unordered_map<int,int,boost::hash<int>, fast_pool_allocator<int>> theMap;
theMap[1] = 2;
这是我得到的编译错误:
错误3错误C2064:term不评估为带有2个参数的函数C:\ Program Files(x86)\ boost \ boost_1_38 \ boost \ unordered \ detail \ hash_table_impl.hpp 2048
如果我注释掉地图的使用,例如“theMap [1] = 2”然后编译错误就消失了。
答案 0 :(得分:7)
看起来你错过了template parameter。
template<typename Key, typename Mapped, typename Hash = boost::hash<Key>,
typename Pred = std::equal_to<Key>,
typename Alloc = std::allocator<std::pair<Key const, Mapped> > >
第四个参数是用于比较的谓词,第五个是分配器。
unordered_map<int, int, boost::hash<int>,
std::equal_to<int>, fast_pool_allocator<int> > theMap;
此外,但可能不是您的问题的原因,您需要将两个'&gt;'分开在模板实例化结束时。