gpt4 book ai didi

c++ - 在没有 lambda 的情况下将模板化函数作为方法参数传递?

转载 作者:行者123 更新时间:2023-12-04 04:28:17 25 4
gpt4 key购买 nike

我确实喜欢能够使用 extFunction 或 std::maxstd::min作为 square 方法的参数而不声明 lambda :

template<typename T>
T extFunction(T a, T b)
{
return a;
}

class Stuff
{
public:
template <typename F>
int square(int num, int num2, F&& func)
{
return func(num, num2);
}
};

int main()
{
Stuff s;
std::cout << s.square(1, 2, std::max<int>) << std::endl;
return 0;
}
但是编译器(gcc 11.1)告诉我:

the function is ambiguous : "couldn't deduce template parameter 'F'"


没有 lambdas 有没有一种简单的方法可以做到这一点?
编辑:
也许展示如何使用 lambdas 做到这一点会很有趣:
std::cout << s.square(1,2,[](auto&& a, auto&& b){return std::max(a,b);}) << std::endl;

std::cout << s.square(1,2,[](auto&& a, auto&& b){return std::min(a,b);}) << std::endl;

std::cout << s.square(1,2,[](auto&& a, auto&& b){return extFunction(a,b);}) << std::endl;
输出 :
Program returned: 0
Program stdout

2
1
1

最佳答案

您不应该获取标准库函数的地址。详细请看这里:
Can I take the address of a function defined in standard library?
因此,除了打包 std::max 之外,没有其他简单的方法。进入函数对象(即 lambda、仿函数)或函数中。

关于c++ - 在没有 lambda 的情况下将模板化函数作为方法参数传递?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68555702/

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