1
template <typename T, typename Y, typename... Args>
class Bar
{
    T& t;
public:
    Bar(T& t) : t(t) { }
};

template <typename T, typename... Args>
void Foo(T &function) { new Bar<T, void, Args...>(function); }

int main()
{
    auto foo = [] { };
    Foo(foo); // ok

    Foo([] { }); // fails (tested on GCC 4.5.3)
}

为什么只有当 lambda 表达式作为 Foo 的参数内联写入时才会失败?

4

1 回答 1

5
template <typename T, typename... Args>
void Foo(T &function) { new Bar<T, void, Args...>(function); }

Foo([] { }); // fails (tested on GCC 4.5.3)

Lambda 是临时的。不要尝试将临时绑定到引用。使用值、常量引用或右值引用。

于 2012-08-03T03:06:38.540 回答