对于auto stdMaxInt = std :: max <int>,类型推断失败;

时间:2015-11-14 07:15:36

标签: c++ auto function-templates type-deduction template-instantiation

将GCC 4.8.4与g++ --std=c++11 main.cpp一起使用,输出以下error

error: unable to deduce ‘auto’ from ‘max<int>’
auto stdMaxInt = std::max<int>;

代码

#include <algorithm>

template<class T>
const T& myMax(const T& a, const T& b)
{
    return (a < b) ? b : a;
}

int main()
{
    auto myMaxInt = myMax<int>;
    myMaxInt(1, 2);

    auto stdMaxInt = std::max<int>;
    stdMaxInt(1, 2);
}

为什么它适用于myMax但不适用于std::max?我们可以使用std::max吗?

2 个答案:

答案 0 :(得分:5)

因为std::max是一个重载函数,所以它不知道你想要创建指针的过载。您可以使用static_cast选择所需的重载。

auto stdMaxInt = static_cast<const int&(*)(const int&, const int&)>(std::max<int>);

答案 1 :(得分:2)

@JamesRoot的static_cast答案有效,但根据我的口味,我更喜欢lambda:

auto stdMaxInt = [](int const& L, int const& R) -> int const& { return std::max(L, R); };

当传递给算法(未经测试)时,这可能具有更好的内联能力的优势。