ALLOCATOR_DECL (<allocators>)

为分布程序模板类。

#define ALLOCATOR_DECL(cache, sync, name) <alloc_template>

备注

宏提供。定义分配程序模板类同步使用筛选器一缓存 sync 和 cache类型的专用化模板定义 template <class Type> class name {.....} 和 template <> class name<void> {.....}。

对于编译的编译器,可以重新生成的模板定义如下所示:

template <class Type> class name
    : public stdext::allocators::allocator_base<Type, sync<cache > >
    {
    public:
        name() {}
        template <class Other> name(const name<Other>&) {}
        template <class Other> name& operator = (const name<Other>&)
            {return *this; }
        template <class Other> struct rebind
            {    /* convert a name<Type> to a name<Other> */
            typedef name<Other> other;
            };
    };

对于无法编译的编译器重新生成的模板定义如下所示:

template <class Type< class name
    : public stdext::allocators::allocator_base<Type,
        sync<stdext::allocators::rts_alloc<cache > > >
    {
    public:
        name() {}
        template <class Other> name(const name<Other>&) {}
        template <class Other> name& operator = (const name<Other>&)
            {return *this; }
    };

要求

页眉: <分配程序>

**命名空间:**stdext

请参见

参考

<allocators>