std::apply
在标头 <tuple> 定义
|
||
template< class F, class Tuple > constexpr decltype(auto) apply( F&& f, Tuple&& t ); |
(C++17 起) (C++23 前) |
|
template< class F, tuple-like Tuple > constexpr decltype(auto) apply( F&& f, Tuple&& t ) noexcept(/* 见下文 */); |
(C++23 起) | |
以元组 t 的元素作为参数调用可调用 (Callable) 对象 f。
给定定义如下的仅用于阐述的函数 apply-impl
:
template<class F,
tuple-like
Tuple, std::size_t... I> // C++23 前没有约束 Tuple
constexpr decltype(auto)
apply-impl
(F&& f, Tuple&& t, std::index_sequence<I...>) // 仅用于阐述
{
return
INVOKE(std::forward<F>(f), std::get<I>(std::forward<Tuple>(t))...);
}
效果等价于
return
apply-impl
(std::forward<F>(f), std::forward<Tuple>(t),
std::make_index_sequence<
std::tuple_size_v<std::decay_t<Tuple>>>{});
.
参数
f | - | 要调用的可调用 (Callable) 对象 |
t | - | 将元素作为 f 的参数的元组 |
返回值
f 所返回的值。
Exceptions
(无) |
(C++23 前) |
noexcept 说明:
noexcept( noexcept(std::invoke(std::forward<F>(f), 其中
|
(C++23 起) |
注解
|
(C++23 前) |
|
(C++23 起) |
功能特性测试宏 | 值 | 标准 | 备注 |
---|---|---|---|
__cpp_lib_apply |
201603L | (C++17) | std::apply
|
示例
#include <iostream> #include <tuple> #include <utility> int add(int first, int second) { return first + second; } template<typename T> T add_generic(T first, T second) { return first + second; } auto add_lambda = [](auto first, auto second) { return first + second; }; template<typename... Ts> std::ostream& operator<<(std::ostream& os, std::tuple<Ts...> const& theTuple) { std::apply ( [&os](Ts const&... tupleArgs) { os << '['; std::size_t n{0}; ((os << tupleArgs << (++n != sizeof...(Ts) ? ", " : "")), ...); os << ']'; }, theTuple ); return os; } int main() { // OK std::cout << std::apply(add, std::pair(1, 2)) << '\n'; // 错误:无法推导函数类型 // std::cout << std::apply(add_generic, std::make_pair(2.0f, 3.0f)) << '\n'; // OK std::cout << std::apply(add_lambda, std::pair(2.0f, 3.0f)) << '\n'; // 进阶示例 std::tuple myTuple(25, "Hello", 9.31f, 'c'); std::cout << myTuple << '\n'; }
输出:
3 5 [25, Hello, 9.31, c]
参阅
(C++11) |
创建一个 tuple 对象,其类型根据各实参类型定义 (函数模板) |
(C++11) |
创建转发引用的 tuple (函数模板) |
(C++17) |
以一个实参元组构造对象 (函数模板) |
(C++17)(C++23) |
以给定实参和可能指定的返回类型 (C++23 起)调用任意可调用 (Callable) 对象 (函数模板) |