gpt4 book ai didi

VS 2013 中的 C++ 11 lambda 回调无法编译

转载 作者:行者123 更新时间:2023-11-28 05:57:46 25 4
gpt4 key购买 nike

我不明白为什么我的以下代码无法在 VS 2013 中编译。编译器只是提示如下,我不知道如何修复它:

e:\work\justtest\console\console.cpp(37): error C2664: 'bool dfsFolder(const wchar_t *,const wchar_t *,std::function &)' : cannot convert argument 3 from 'main::' to 'std::function &'

bool dfsFolder(__in const wchar_t* folderPath, __in const wchar_t* ext, const std::function<bool(const std::wstring& wsFilePath)>& pFunc)
{

}

int main()
{
auto path = LR"(F:\TODOWNLOAD\)";
auto lambda = [&](const std::wstring& wsFilePath) mutable -> bool
{
wcout << wsFilePath << endl;
return true;
};
dfsFolder(path, L"*.jpg", lambda);
}

最佳答案

错误消息似乎与代码不匹配:最后一个参数是 std::function<...> const&不是std::function<...>&如错误中所述。您的实际代码是否声明了 std::function<...>&参数为 const

关于VS 2013 中的 C++ 11 lambda 回调无法编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33825254/

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