首页 > 解决方案 > Lambda 复制对 lambda 引用的引用 VS2017 编译错误

问题描述

在 Visual Studio 2017 中编译以下代码:

#include "pch.h"
#include <iostream>

int main()
{
    int test = 5;

    auto cb1 = [test]()
    {
        auto cb2 = [&]()
        {
            auto cb3 = [test]()
            {
                std::cout << test;
            };
            cb3();
        };
        cb2();
    };
    cb1();
}

给出编译器错误

test.cpp(17): error C2440: '<function-style-cast>': cannot convert from 'const int' to 'main::<lambda_80fd0d4feae1377a5d8b8955e10105ab>::()::<lambda_38fc83ae6a7bd6540ebe1721869db4f1>'
test.cpp(17): note: No constructor could take the source type, or constructor overload resolution was ambiguous
test.cpp(18): error C3536: 'cb2': cannot be used before it is initialized
test.cpp(18): error C2064: term does not evaluate to a function taking 0 arguments

有人知道为什么 Visual Studio 会出现此错误吗?(在clang上似乎可以编译)您可以通过替换为什么可以修复错误来编译auto cb2 = [&]()auto cb2 = [&test]()

更有趣的添加std::cout << test;或修复编译器错误const int &ref = test;的主体。cb2

标签: c++lambda

解决方案


这只是旧版 Visual Studio 编译器中的一个错误。可以通过实验看到该错误在 MSVC v16.10 之前一直存在,并且在 MSVC v16.11 中已修复。幸运的是,包括 Visual Studio 2019 在内的现代编译器接受您的程序。演示:https ://gcc.godbolt.org/z/rYG7Ma8n9


推荐阅读