gpt4 book ai didi

c++ - 使用 boost::pool_allocator 和 boost::unordered_map 的语法是什么?

转载 作者:太空狗 更新时间:2023-10-29 20:19:24 25 4
gpt4 key购买 nike

我只是在试验 boost::pool 以查看它是否是我正在使用的东西的更快分配器,但我无法弄清楚如何将它与 boost::unordered_map 一起使用:

这是一个代码片段:

unordered_map<int,int,boost::hash<int>, fast_pool_allocator<int>> theMap;   
theMap[1] = 2;

这是我得到的编译错误:

错误 3 error C2064: term does not evaluate to a function takes 2 arguments C:\Program Files (x86)\boost\boost_1_38\boost\unordered\detail\hash_table_impl.hpp 2048

如果我注释掉 map 的使用,例如"theMap[1] = 2"然后编译错误消失。

最佳答案

您似乎缺少一个 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;

此外,但可能不是问题的原因,您需要在模板实例化结束时将两个“>”分开。

关于c++ - 使用 boost::pool_allocator 和 boost::unordered_map 的语法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1061543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com