我实现了一个通用事件发射器类,它允许代码注册回调,并使用参数发出事件。我使用Boost.Any类型擦除来存储回调,以便它们可以有任意参数签名。
一切正常,但由于某种原因,传入的lambdas必须首先变成std::function
个对象。为什么编译器不推断lambda是函数类型?是因为我使用可变参数模板的方式吗?
我使用Clang(版本字符串:Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
)。
代码:
#include <functional>
#include <iostream>
#include <map>
#include <string>
#include <vector>
#include <boost/any.hpp>
using std::cout;
using std::endl;
using std::function;
using std::map;
using std::string;
using std::vector;
class emitter {
public:
template <typename... Args>
void on(string const& event_type, function<void (Args...)> const& f) {
_listeners[event_type].push_back(f);
}
template <typename... Args>
void emit(string const& event_type, Args... args) {
auto listeners = _listeners.find(event_type);
for (auto l : listeners->second) {
auto lf = boost::any_cast<function<void (Args...)>>(l);
lf(args...);
}
}
private:
map<string, vector<boost::any>> _listeners;
};
int main(int argc, char** argv) {
emitter e;
int capture = 6;
// Not sure why Clang (at least) can't deduce the type of the lambda. I don't
// think the explicit function<...> business should be necessary.
e.on("my event",
function<void ()>( // <--- why is this necessary?
[&] () {
cout << "my event occurred " << capture << endl;
}));
e.on("my event 2",
function<void (int)>(
[&] (int x) {
cout << "my event 2 occurred: " << x << endl;
}));
e.on("my event 3",
function<void (double)>(
[&] (double x) {
cout << "my event 3 occurred: " << x << endl;
}));
e.on("my event 4",
function<void (int, double)>(
[&] (int x, double y) {
cout << "my event 4 occurred: " << x << " " << y << endl;
}));
e.emit("my event");
e.emit("my event 2", 1);
e.emit("my event 3", 3.14159);
e.emit("my event 4", 10, 3.14159);
return EXIT_SUCCESS;
}
答案 0 :(得分:12)
lambda不是std::function
,而std::function
不是lambda。
lambda是一个语法糖,用于创建一个如下所示的匿名类:
struct my_lambda {
private:
int captured_int;
double captured_double;
char& referenced_char;
public:
int operator()( float passed_float ) const {
// code
}
};
int captured_int = 7;
double captured_double = 3.14;
char referenced_char = 'a';
my_lambda closure {captured_int, captured_double, referenced_char};
closure( 2.7f );
来自:
int captured_int = 7;
double captured_double = 3.14;
char referenced_char = 'a';
auto closure = [=,&referenced_char](float passed_float)->int {
// code
};
closure(2.7);
,my_lambda
的类型名称实际上是一些不可命名的类型。
std::function
是完全不同的事情。它是一个使用特定签名实现operator()
的对象,并将智能值语义指针存储到覆盖复制/移动/调用操作的抽象接口。它有一个template
d构造函数,可以使用任何类型支持带有兼容签名的copy / move / operator()
,生成一个实现抽象内部接口的具体自定义类,并将其存储在上面提到的内部价值语义智能指针。
然后它将操作从作为值类型的自身转发到抽象内部指针,包括完美转发到调用方法。
碰巧,可以在std::function
中存储lambda,就像存储函数指针一样。
但是有很多不同的std::function
可以存储给定的lambda - 任何,其中类型可以转换为参数和从参数工作,并且实际上同样有效,就std::function
而言。
template
中的C ++中的类型推导在“你可以转换成”的级别上不起作用 - 它是模式匹配,纯粹而简单。由于lambda是与任何std::function
无关的类型,因此不能从中推导出std::function
类型。
如果C ++试图在一般情况下这样做,则必须反转图灵完备过程以确定可以将哪些类型(如果有)传递给template
以生成转换兼容的实例。
理论上,我们可以将“运算符演绎模板参数”添加到语言中,其中给定template
的实现者可以编写采用某种任意类型的代码,并且他们尝试从这种类型中挑出“ ,什么template
参数应该用于实例“。但是C ++没有这个。
答案 1 :(得分:5)
编译器不会推断任何内容,因为编译器实现了C ++语言,并且语言的模板参数推导规则不允许以您希望的方式进行推导。
以下是一个代表您情况的简单示例:
template <typename T> struct Foo
{
Foo(int) {}
};
template <typename T> void magic(Foo<T> const &);
int main()
{
magic(10); // what is T?
}
答案 2 :(得分:1)
当boost::any
存储一个值时,它使用该对象的静态类型来确定存储的对象类型。如果指定存储内容的静态类型,则只能将any
强制转换回正确类型的对象。
每个C ++ lambda都与一个对用户不透明的实现定义类型相关联。虽然lambdas可以被称为函数,但它们不能直接评估为std::function
。将lambda存储在any
中时,必须使用强制转换,以确保在回送时存储的静态类型为std::function
。
希望这有帮助!