std::apply

来自cppreference.com
< cpp‎ | utility
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)(C++20)(C++20)
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
apply
(C++17)
(C++23)
初等字符串转换
(C++17)
(C++17)
 
在标头 <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),
                         std::get<Is>(std::forward<Tuple>(t))...))

)

其中 Is... 表示参数包:

(C++23 起)

注解

Tuple 不必是 std::tuple,它可以被任何支持 std::getstd::tuple_size 的类型替代;特别是可以用 std::arraystd::pair

(C++23 前)

Tuple 被约束为元组式类型,即其中每个类型都必须是 std::tuple 的特化,或者实现了 tuple-like 的其他任何类型(例如 std::arraystd::pair)。

(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]

参阅

创建一个 tuple 对象,其类型根据各实参类型定义
(函数模板)
创建转发引用tuple
(函数模板)
以一个实参元组构造对象
(函数模板)
(C++17)(C++23)
以给定实参和可能指定的返回类型 (C++23 起)调用任意可调用 (Callable) 对象
(函数模板)