你知道,我们可以将 lambda 函数包装或存储到 a 中std::function
:
#include <iostream>
#include <functional>
int main()
{
std::function<float (float, float)> add = [](float a, float b)
// ^^^^^^^^^^^^^^^^^^^^
{
return a + b;
};
std::cout << add(1, 2) << std::endl;
}
我的问题是std::function
,您可以看到它是一个模板类,但它可以接受任何类型的函数签名。
例如float (float, float)
这种形式return_value (first_arg, second_arg)
。
它的结构是什么std::function
,它如何接受一个函数签名x(y,z)
,以及它如何与它一起工作?在 C++ 中是float (float, float)
一个新的有效表达式吗?