我实现了自定义分配器,并且可以像使用STL容器一样使用它:
std::map<int, int, std::less<int>, CustomAllocator<int,100>> m1;
现在我想创建一个支持此自定义分配器的自定义容器。我知道如何使用pmr::polymorphic_allocator<byte>
在C ++ 17中做到这一点。所以,假设我们有一些Node
结构和一个自定义slist
容器类,它们存储这些节点。因此,要使用我们的自定义分配器,我们将在我们的类中创建一个成员:
allocator_type m_allocator;
其中allocator_type的定义如下:
using allocator_type = pmr::polymorphic_allocator<byte>;
在我们需要分配器的slist
方法中,我们可以使用它:
//in insert method, construct new Node to store
m_allocator.construct(...);
我们的客户端代码如下:
test_resource tr; // our custom allocator
slist<pmr::string> lst(&tr);
但是我怎样才能在C ++ 11/14中实现同样的目标呢?我应该在自定义容器中指定什么才能使用我的CustomAllocator
?
答案 0 :(得分:3)
最简单的解决方案可能是遵循标准库的模型,并为容器提供一个模板参数,供其使用的分配器。
当你这样做时,不要忘记标准库(从C ++ 11开始)要求对分配器的所有访问都要通过std::allocator_traits
而不是直接访问allocator对象的成员(因为它可能没有全部)。您应该这样做,以与设计用于标准库的其他分配器兼容。
作为使用分配器特性的一个例子,考虑这个人为的#34;容器&#34;:
template <class A>
struct StringContainer
{
std::string *data;
A allocator;
StringContainer(std::string value, A allocator);
~StringContainer();
};
以下是实现构造函数的错误的方法:
StringContainer(std::string value, A a) : allocator(a)
{
data = allocator.allocate(sizeof(int));
allocator.construct(data, value);
}
原因是分配器不需要提供construct
成员。如果他们不提供,则使用展示位置new
。因此,实现构造函数的正确的方式是:
StringContainer(std::string value, A a) : allocator(a)
{
data = std::allocator_traits<A>::allocate(allocator, 1);
std::allocator_traits<A>::construct(allocator, data, value);
}
如果std::allocator_traits<A>::construct
支持construct
,则A
负责调用new
,如果不支持则~StringContainer()
{
std::allocator_traits<A>::destroy(allocator, data);
std::allocator_traits<A>::deallocate(allocator, data, 1);
}
。
同样,析构函数应该像这样实现:
data
实际上,甚至班级也有些错误地实施了。 typename std::allocator_traits<A>::pointer data;
的类型应为:
Select createdby,Date,LogAgent,Logcomments from ticketsdata where ticketnumber='123456'