gpt4 book ai didi

c++ - Visual 2010 中带有 lambda 函数和枚举的 C2665,是错误还是正常?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:38:12 26 4
gpt4 key购买 nike

我可以编译以下代码:

enum E {a, b, c};
void f()
{
E e;
std::function<void()> f = [&]() { e = a; };
}

但不是下面的:

void f()
{
enum E {a, b, c};
E e;
std::function<void()> f = [&]() { e = a; };
}

发出以下编译器错误:

1>test.cpp(5): error C2665: '`anonymous-namespace'::<lambda1>::<lambda1>' : none of the 2 overloads could convert all the argument types
1> test.cpp(5): could be '`anonymous-namespace'::<lambda1>::(f::E &,f::E &)'
1> while trying to match the argument list '(f::E, f::E)'

这个错误是可以预料的还是一个错误?

最佳答案

这似乎与 http://social.msdn.microsoft.com/Forums/en/vclanguage/thread/88f533d8-b7f5-4416-bdcf-b461aeb74178 中的问题相同.在那里,它似乎是编译器中的错误。 MSVC 似乎对 lambda 中的本地类型存在一些问题;另见 http://connect.microsoft.com/VisualStudio/feedback/details/675113/lambda-expression-causes-internal-compiler-error#details .

5.1.2 Lambda 表达式 [expr.prim.lambda] 中没有任何语言表明不能在 lambda 中捕获本地定义的类型。

关于c++ - Visual 2010 中带有 lambda 函数和枚举的 C2665,是错误还是正常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12177230/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com