3

这段代码有什么问题?

#include <iostream>
using namespace std;

template <typename T>
T max(T X, T Y)
{
    return (X > Y) ? X : Y;
}

int main()
{
    int x = max(5,6);
}

我收到此错误:

overload.C: In function 'int main()':
overload.C:19: error: call of overloaded 'max(int, int)' is ambiguous
overload.C:12: note: candidates are: T max(T, T) [with T = int]
/usr/lib/gcc/x86_64-redhat-linux/4.1.2/../../../../include/c++/4.1.2  /bits/stl_algobase.h:206: note:                 const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = int]
4

2 回答 2

12

max已在标准库中定义。删除using namespace std它应该可以工作。

于 2012-04-18T09:32:33.040 回答
0

也许max标准库已经声明了。尝试不导入命名空间。

于 2012-04-18T09:34:57.143 回答