allocator_base::allocator_base
构造 allocator_base 类型的对象。
allocator_base();
template <class Other>
allocator_base(const allocator_base<Other, Sync>& _Right);
参数
参数 |
说明 |
---|---|
_Right |
将复制的程序分配对象。 |
备注
第一构造函数构造实例。allocator_base 第二个构造函数构造一个 allocator_base 实例。这样所有 allocator_base<Type, _Sync> 实例 a,allocator_base<Type, Sync>(allocator_base<Other, Sync>(a)) == a。
要求
页眉: <分配程序>
**命名空间:**stdext