allocator<void>
類別
將類別範本配置器特製化為 類型 void
,定義在此內容中有意義的類型。
語法
template <>
class allocator<void> {
typedef void *pointer;
typedef const void *const_pointer;
typedef void value_type;
template <class Other>
struct rebind;
allocator();
allocator(const allocator<void>&);
template <class Other>
allocator(const allocator<Other>&);
template <class Other>
allocator<void>& operator=(const allocator<Other>&);
};
備註
類別會針對類型void
明確特製類別範本配置器。 其建構函式和指派運算符的行為與類別範本的行為相同,但只會定義下列類型:
重新系結,巢狀類別範本。