命名空间
变体
操作

std::apply

来自 cppreference.com
< cpp‎ | utility
 
 
实用程序库
语言支持
类型支持 (基本类型、RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(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(/* see below */);
(自 C++23 起)

使用 t 的元素作为参数,调用 Callable 对象 f

给出如下定义的仅供说明的函数 apply-impl

template<class F,class Tuple, std::size_t... I>
constexpr decltype(auto)
    apply-impl(F&& f, Tuple&& t, std::index_sequence<I...>) // exposition only
{
    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 返回的值。

[编辑] 异常

(无)

(直至 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 的特化,或者其他类型(例如 std::arraystd::pair)的模型,这些类型是 类似元组的

(自 C++23 起)
特性测试 Std 特性
__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';
 
    // Error: can't deduce the function type
    // 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'; 
 
    // advanced example
    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 起)
(函数模板) [编辑]