如何使用 lambda 表达式作为模板参数?例如.作为初始化 std::set 的比较类.
How to use lambda expression as a template parameter? E.g. as a comparison class initializing a std::set.
以下解决方案应该有效,因为 lambda 表达式仅创建一个匿名结构,它应该适合作为模板参数.然而,产生了很多错误.
The following solution should work, as lambda expression merely creates an anonymous struct, which should be appropriate as a template parameter. However, a lot of errors are spawned.
代码示例:
struct A {int x; int y;};
std::set <A, [](const A lhs, const A &rhs) ->bool {
return lhs.x < rhs.x;
} > SetOfA;
错误输出(我使用的是 g++ 4.5.1 编译器和 --std=c++0x 编译标志):
Error output (I am using g++ 4.5.1 compiler and --std=c++0x compilation flag):
error: ‘lhs’ cannot appear in a constant-expression
error: ‘.’ cannot appear in a constant-expression
error: ‘rhs’ cannot appear in a constant-expression
error: ‘.’ cannot appear in a constant-expression
At global scope:
error: template argument 2 is invalid
这是预期的行为还是 GCC 中的错误?
Is that the expected behavior or a bug in GCC?
编辑
正如有人指出的那样,我错误地使用了 lambda 表达式,因为它们返回了他们所指的匿名结构的实例.
As someone pointed out, I'm using lambda expressions incorrectly as they return an instance of the anonymous struct they are referring to.
但是,修复该错误并不能解决问题.对于以下代码,我在未评估的上下文中收到 lambda-expression 错误:
However, fixing that error does not solve the problem. I get lambda-expression in unevaluated context error for the following code:
struct A {int x; int y;};
typedef decltype ([](const A lhs, const A &rhs) ->bool {
return lhs.x < rhs.x;
}) Comp;
std::set <A, Comp > SetOfA;
std::set 的第二个模板参数需要 type,而不是 表达式,所以只是你用错了.
The 2nd template parameter of std::set expects a type, not an expression, so it is just you are using it wrongly.
您可以像这样创建集合:
You could create the set like this:
auto comp = [](const A& lhs, const A& rhs) -> bool { return lhs.x < rhs.x; };
auto SetOfA = std::set <A, decltype(comp)> (comp);
这篇关于如何使用 lambda 表达式作为模板参数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
为什么两个函数的地址相同?Why do two functions have the same address?(为什么两个函数的地址相同?)
为什么 std::function 的初始化程序必须是可复制构Why the initializer of std::function has to be CopyConstructible?(为什么 std::function 的初始化程序必须是可复制构造的?)
混合模板与多态性mixing templates with polymorphism(混合模板与多态性)
我什么时候应该使用关键字“typename"?使用模When should I use the keyword quot;typenamequot; when using templates(我什么时候应该使用关键字“typename?使用模板时)
依赖名称解析命名空间 std/标准库Dependent name resolution amp; namespace std / Standard Library(依赖名称解析命名空间 std/标准库)
gcc 可以编译可变参数模板,而 clang 不能gcc can compile a variadic template while clang cannot(gcc 可以编译可变参数模板,而 clang 不能)