std::bind_front, std::bind_back
定义于头文件 <functional> |
||
std::bind_front |
||
template< class F, class... Args > constexpr /* unspecified */ bind_front( F&& f, Args&&... args ); |
(1) | (since C++20) |
template< auto ConstFn, class... Args > constexpr /* unspecified */ bind_front( Args&&... args ); |
(2) | (since C++26) |
std::bind_back |
||
template< class F, class... Args > constexpr /* unspecified */ bind_back( F&& f, Args&&... args ); |
(3) | (since C++23) |
template< auto ConstFn, class... Args > constexpr /* unspecified */ bind_back( Args&&... args ); |
(4) | (since C++26) |
函数模板 std::bind_front
和 std::bind_back
生成一个完美转发调用包装器,它允许使用其 (1,2) 首个或 (3,4) 末尾 sizeof...(Args) 绑定到 args 参数的参数来调用可调用目标。
以下条件必须为 true,否则程序是病式的
- (1,3) std::is_constructible_v<std::decay_t<F>, F>,
- (1,3) std::is_move_constructible_v<std::decay_t<F>>,
- (2,4) 如果 decltype(ConstFn) 是指针或指向成员的指针,则
ConstFn
不是空指针, - (std::is_constructible_v<std::decay_t<Args>, Args> && ...),
- (std::is_move_constructible_v<std::decay_t<Args>> && ...).
目录 |
[编辑] 参数
f | - | 可调用 对象(函数对象,函数指针,函数引用,成员函数指针或数据成员指针),它将被绑定到一些参数 |
args | - | 要绑定到可调用目标的 (1,2) 首个或 (3,4) 末尾 sizeof...(Args) 参数的参数列表 |
类型要求 | ||
-std::decay_t<F> 必须满足 可移动构造 的要求。 | ||
-std::decay_t<Args>... 必须满足 可移动构造 的要求。 | ||
-decltype(ConstFn) 必须满足 可调用 的要求。 |
[编辑] 返回值
类型 T
的函数对象(调用包装器),其类型未指定,除非对具有相同参数的 std::bind_front
或 std::bind_back
的两次调用返回的对象类型相同。
设 bind-partial
为 std::bind_front
或 std::bind_back
之一。
返回的对象具有以下属性
bind-partial 返回类型
成员对象
返回对象的行为就像它持有
tup
,但返回对象的赋值行为未指定,名称仅用于说明。构造函数
bind-partial
的返回类型表现得好像其复制/移动构造函数执行按成员复制/移动。如果其所有成员对象(如上所述)都是 可复制构造 的,则它是 可复制构造 的,否则它是 可移动构造 的。
成员函数 operator()
给定从先前调用 (1,3) bind-partial(f, args...)
或 (2,4) bind-partial<ConstFn>(args...)
获得的对象 G
,当在函数调用表达式 g(call_args...) 中调用指定 G
的左值 g
时,将发生存储对象的调用,如同通过
其中
-
Ns
是整数包0, 1, ..., (sizeof...(Args) - 1)
, - 如果
g
在调用表达式中是左值,则它在 std::invoke 表达式中是左值,否则是右值。因此 std::move(g)(call_args...) 可以将绑定参数移动到调用中,其中 g(call_args...) 将复制。
-
如果 g
具有 volatile 限定类型,则程序是非良构的。
如果 std::invoke 表达式调用的表达式是 noexcept,则成员 operator() 是 noexcept(换句话说,它保留了底层调用运算符的异常规范)。
[编辑] 异常
[编辑] 注解
这些函数模板旨在取代 std::bind。与 std::bind
不同,它们不支持任意参数重排,并且对嵌套的 bind-表达式或 std::reference_wrapper 没有特殊处理。另一方面,它们关注调用包装器对象的值类别,并传播底层调用运算符的异常规范。
如 std::invoke 中所述,当调用指向非静态成员函数或指向非静态数据成员的指针时,第一个参数必须是对对象的引用或指针(可能包括智能指针,例如 std::shared_ptr 和 std::unique_ptr),该对象的成员将被访问。
std::bind_front
或 std::bind_back
的参数会被复制或移动,并且永远不会通过引用传递,除非包装在 std::ref 或 std::cref 中。
通常,使用 (1) std::bind_front
和 (3) std::bind_back
将参数绑定到函数或成员函数需要存储函数指针以及参数,即使语言精确地知道要调用的函数,而无需解引用指针。为了保证在这些情况下“零成本”,C++26 引入了版本 (2,4)(接受可调用对象作为 非类型模板参数 的参数)。
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_bind_front |
201907L |
(C++20) | std::bind_front , (1) |
202306L |
(C++26) | 允许将可调用对象作为非类型模板参数传递给 std::bind_front , (2) | |
__cpp_lib_bind_back |
202202L |
(C++23) | std::bind_back , (3) |
202306L |
(C++26) | 允许将可调用对象作为非类型模板参数传递给 std::bind_back , (4) |
[编辑] 可能的实现
(2) bind_front |
---|
namespace detail { template<class T, class U> struct copy_const : std::conditional<std::is_const_v<T>, U const, U> {}; template<class T, class U, class X = typename copy_const<std::remove_reference_t<T>, U>::type> struct copy_value_category : std::conditional<std::is_lvalue_reference_v<T&&>, X&, X&&> {}; template <class T, class U> struct type_forward_like : copy_value_category<T, std::remove_reference_t<U>> {}; template <class T, class U> using type_forward_like_t = typename type_forward_like<T, U>::type; } template<auto ConstFn, class... Args> constexpr auto bind_front(Args&&... args) { using F = decltype(ConstFn); if constexpr (std::is_pointer_v<F> or std::is_member_pointer_v<F>) static_assert(ConstFn != nullptr); return [... bound_args(std::forward<Args>(args))]<class Self, class... T> ( this Self&&, T&&... call_args ) noexcept ( std::is_nothrow_invocable_v<F, detail::type_forward_like_t<Self, std::decay_t<Args>>..., T...> ) -> std::invoke_result_t<F, detail::type_forward_like_t<Self, std::decay_t<Args>>..., T...> { return std::invoke(ConstFn, std::forward_like<Self>(bound_args)..., std::forward<T>(call_args)...); }; } |
(4) bind_back |
namespace detail { /* is the same as above */ } template<auto ConstFn, class... Args> constexpr auto bind_back(Args&&... args) { using F = decltype(ConstFn); if constexpr (std::is_pointer_v<F> or std::is_member_pointer_v<F>) static_assert(ConstFn != nullptr); return [... bound_args(std::forward<Args>(args))]<class Self, class... T> ( this Self&&, T&&... call_args ) noexcept ( std::is_nothrow_invocable_v<F, detail::type_forward_like_t<Self, T..., std::decay_t<Args>>...> ) -> std::invoke_result_t<F, detail::type_forward_like_t<Self, T..., std::decay_t<Args>>...> { return std::invoke(ConstFn, std::forward<T>(call_args)..., std::forward_like<Self>(bound_args)...); }; } |
[编辑] 示例
#include <cassert> #include <functional> int minus(int a, int b) { return a - b; } struct S { int val; int minus(int arg) const noexcept { return val - arg; } }; int main() { auto fifty_minus = std::bind_front(minus, 50); assert(fifty_minus(3) == 47); // equivalent to: minus(50, 3) == 47 auto member_minus = std::bind_front(&S::minus, S{50}); assert(member_minus(3) == 47); //: S tmp{50}; tmp.minus(3) == 47 // Noexcept-specification is preserved: static_assert(!noexcept(fifty_minus(3))); static_assert(noexcept(member_minus(3))); // Binding of a lambda: auto plus = [](int a, int b) { return a + b; }; auto forty_plus = std::bind_front(plus, 40); assert(forty_plus(7) == 47); // equivalent to: plus(40, 7) == 47 #if __cpp_lib_bind_front >= 202306L auto fifty_minus_cpp26 = std::bind_front<minus>(50); assert(fifty_minus_cpp26(3) == 47); auto member_minus_cpp26 = std::bind_front<&S::minus>(S{50}); assert(member_minus_cpp26(3) == 47); auto forty_plus_cpp26 = std::bind_front<plus>(40); assert(forty_plus(7) == 47); #endif #if __cpp_lib_bind_back >= 202202L auto madd = [](int a, int b, int c) { return a * b + c; }; auto mul_plus_seven = std::bind_back(madd, 7); assert(mul_plus_seven(4, 10) == 47); //: madd(4, 10, 7) == 47 #endif #if __cpp_lib_bind_back >= 202306L auto mul_plus_seven_cpp26 = std::bind_back<madd>(7); assert(mul_plus_seven_cpp26(4, 10) == 47); #endif }
[编辑] 参考
- C++26 标准 (ISO/IEC 14882:2026)
- TBD 函数模板 bind_front 和 bind_back [func.bind.partial]
- C++23 标准 (ISO/IEC 14882:2024)
- 22.10.14 函数模板 bind_front 和 bind_back [func.bind.partial]
- C++20 标准 (ISO/IEC 14882:2020)
- 20.14.14 函数模板 bind_front [func.bind.front]
[编辑] 参见
(C++11) |
将一个或多个参数绑定到函数对象 (函数模板) |
(C++11) |
从成员指针创建函数对象 (函数模板) |