命名空间
变体
操作

std::uses_allocator<std::function>

来自 cppreference.cn
< cpp‎ | 工具‎ | 函数对象‎ | function
 
 
工具库
 
函数对象
函数调用
(C++17 起)(C++23 起)
恒等函数对象
(C++20)
引用包装器
(C++11 起)(C++11 起)
(C++20 起)(C++20 起)
透明运算符包装器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

旧绑定器和适配器
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)  
(直到 C++17*)
(直至 C++17*)(直至 C++17*)(直至 C++17*)(直至 C++17*)
(直到 C++20*)
(直到 C++20*)
(直到 C++17*)(直到 C++17*)
(直到 C++17*)(直到 C++17*)

(直到 C++17*)
(直至 C++17*)(直至 C++17*)(直至 C++17*)(直至 C++17*)
(直到 C++20*)
(直到 C++20*)
 
 
定义于头文件 <functional>
template< class R, class... ArgTypes, class Alloc >
struct uses_allocator<std::function<R(ArgTypes...)>, Alloc> : std::true_type { };
(C++11 起)
(C++17 前)

std::uses_allocator 特化通知其他库组件,类型 std::function 的所有对象都支持*uses-allocator 构建*,尽管它们没有嵌套的 allocator_type

目录

[编辑] 注解

std::function 的分配器支持定义不佳且实现不一致。某些实现根本不支持 uses-allocator 构建,某些提供所需的构造函数重载但忽略提供的分配器参数,还有些提供重载并使用提供的分配器进行构建,但在 std::function 被重新赋值时却不使用。因此,分配器支持在 C++17 中被移除。

继承自 std::integral_constant

成员常量

[静态]
true
(public static 成员常量)

成员函数

operator bool
将对象转换为 bool,返回 value
(公开成员函数)
operator()
(C++14)
返回 value
(公开成员函数)

成员类型

类型 定义
value_type bool
类型 std::integral_constant<bool, value>

[编辑] 参阅

检查指定类型是否支持 uses-allocator 构造
(类模板) [编辑]