std::pmr::get_default_resource

std::pmr::get_default_resource

Defined in header <memory_resource>
std::pmr::memory_resource* get_default_resource();
(since C++17)

Gets the default memory resource pointer.

The default memory resource pointer is used by certain facilities when an explicit memory resource is not supplied. The initial default memory resource pointer is the return value of std::pmr::new_delete_resource.

This function is thread-safe. Previous call to std::pmr::set_default_resource synchronizes with (see std::memory_order) the subsequent std::pmr::get_default_resource calls.

Return value

Returns the value of the default memory resource pointer.

Exceptions

noexcept specification:
noexcept

See also

(C++17)
sets the default std::pmr::memory_resource
(function)
(C++17)
returns a static program-wide std::pmr::memory_resource that uses the global operator new and operator delete to allocate and deallocate memory
(function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/memory/get_default_resource

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部