std::scoped_allocator_adaptor<OuterAlloc,InnerAlloc...>::outer_allocator
来自 cppreference.cn
< cpp | memory | scoped allocator adaptor
定义于头文件 <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)。
[edit] 参数
(无)
[edit] 返回值
对 OuterAlloc
的引用。
[edit] 参见
获取 inner_allocator 引用(公有成员函数) |