我对C ++还是很陌生,目前正在尝试学习如何将模板用于lambda函数。
可以在main
函数中看到lambda,它只是进行布尔检查。
下面的实现有效,但是我必须在testing
函数中明确声明lambda的类型,如输入参数所示。
void testing(std::function<bool(const int& x)> predicate){
auto a = predicate(2);
std::cout << a << "\n";
}
int main() {
int ax = 2;
testing([&ax](const int& x) { return x == ax;});
}
我希望实现一个可以利用如下所示的模板的实现,但是我什么也无法工作。
template <typename T>
void testing(std::function<bool(const T& x)> predicate){
auto a = predicate(2);
std::cout << a << "\n";
}
有没有一种通用的方法可以将模板用于lambda?
答案 0 :(得分:5)
std::function
中。将lambda传递给函数的最佳方法是将其作为不受约束的模板参数:
template<class F>
void testing(F predicate) {
auto a = predicate(2);
std::cout << a << '\n';
}
int main() {
int ax = 2;
testing([ax](int x) { return x == ax; });
}
std::function
。std::function
在堆上分配空间以存储函子std::function
的开销类似于虚拟函数调用std::function
不能由编译器内联,但是内联直接传递的lambda很简单