如何使用 lambda 表达式作为模板参数?

2021-12-13 00:00:00 lambda templates c++ c++11

如何使用 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);

相关文章