将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
吗?
答案 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); };
当传递给算法(未经测试)时,这可能具有更好的内联能力的优势。