gpt4 book ai didi

c++ - 模板成员函数参数推导

转载 作者:太空狗 更新时间:2023-10-29 20:54:51 25 4
gpt4 key购买 nike

<分区>

我很好奇为什么以下模板推导不起作用(VS2015):

template<typename T>
class Foo
{
public:
template<typename U>
U get(U u) { return u; }

// Default constructed U and T for example only.
template<typename U>
U get(std::function<U(U, T)> f) { return f(U(), T()); }

template<typename U>
U get(U u, std::function<U(U,T)> f) { return u; }

};

在上面的例子中,以下是成功的:

Foo<int> f;
auto f_asInt = f.get(5); // f_asInt is of type int
auto f_asFloat = f.get(5.0f); // f_asFloat is of type float.

auto ff_asInt = f.get([](int, int) { return 5; });
auto ff_asFloat = f.get([](float, int) { return 5.0f; });

但是以下编译失败

Foo<int> f;
auto f_asInt = f.get(5, [](int, int) { return 5; });
auto f_asFloat = f.get(5.0f, [](float, int) { return 5.0f; });

我收到以下错误:

error C2784: 'U Foo<int>::get(U,std::function<U(U,T)>)': could not deduce template argument for 'std::function<U(U,T)>' from 'main::<lambda_c4fa8cb1e6fa86997f25b7dabd5d415f>'

如果我拼出整个模板,它会按预期工作。

Foo<int> f;
auto f_asInt = f.get<int>(5, [](int, int) { return 5; });
auto f_asFloat = f.get<float>(5.0f, [](float, int) { return 5.0f; });

我希望在这种情况下推导模板参数,这甚至可能吗?

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