定义于头文件
<scoped_allocator>
|
||
outer_allocator_type& outer_allocator() noexcept;
|
(1) | (C++11 起) |
const outer_allocator_type& outer_allocator() const noexcept;
|
(2) | (C++11 起) |
获得到用于声明此类的外层分配器的引用。
1) 返回 static_cast<OuterAlloc&>(*this)
2) 返回 static_cast<const OuterAlloc&>(*this)
(无)
到 OuterAlloc
的引用
获得一个 inner_allocator 引用 (公开成员函数) |