C++ 参考手册

位置:首页 > C++ 参考手册 >动态内存管理 >std::scoped_allocator_adaptor > std::scoped_allocator_adaptor<OuterAlloc,InnerAlloc...>::outer_allocator

定义于头文件 <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 引用
(公开成员函数)