gpt4 book ai didi

c++ - lambda : the function is not captured 的 Lambda

转载 作者:IT老高 更新时间:2023-10-28 12:44:52 24 4
gpt4 key购买 nike

以下程序无法编译:

#include <iostream>
#include <vector>
#include <functional>
#include <algorithm>
#include <cstdlib>
#include <cmath>

void asort(std::vector<double>& v, std::function<bool(double, double)> f)
{
std::sort(v.begin(), v.end(), [](double a, double b){return f(std::abs(a), std::abs(b));});
}

int main()
{
std::vector<double> v({1.2, -1.3, 4.5, 2.3, -10.2, -3.4});
for (unsigned int i = 0; i < v.size(); ++i) {
std::cout<<v[i]<<" ";
}
std::cout<<std::endl;
asort(v, [](double a, double b){return a < b;});
for (unsigned int i = 0; i < v.size(); ++i) {
std::cout<<v[i]<<" ";
}
std::cout<<std::endl;
return 0;
}

因为:

error : 'f' is not captured

这是什么意思以及如何解决问题?

最佳答案

您在 asort() 内的 lambda 中使用了 f 参数,但没有捕获它。尝试将 f 添加到捕获列表(将 [] 更改为读取 [&f])。

关于c++ - lambda : the function is not captured 的 Lambda,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13461538/

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