Allocator构造函数和析构函数。
1 2 3 4
Allocator() = default virtual ~Allocator() = default Allocator(const Allocator &) = delete Allocator &operator=(const Allocator &) = delete
无。
纯虚类需要用户派生。