allocator_type get_allocator() const noexcept; // (1) C++23
概要
アロケータオブジェクトを取得する。
戻り値
コンストラクタで設定され、保持しているアロケータオブジェクトを返す。
例
#include <cassert>
#include <stacktrace>
int main() {
std::allocator<std::stacktrace_entry> alloc{};
std::stacktrace trace{alloc};
assert(trace.get_allocator() == alloc);
}
出力
バージョン
言語
- C++23
処理系
- Clang: ??
- GCC: 12 ✅
- Visual C++: ??