- 论坛徽章:
- 0
|
appadm@xpangxie:~$ uname -a
Linux xpangxie 2.6.26-2-686 #1 SMP Sat Nov 20 23:06:30 UTC 2010 i686 GNU/Linux
appadm@xpangxie:~$ cat testcpp.cpp
#include <iostream>
using namespace std;
template <class T>
T max(T a,T b){
return a>b?a:b;
}
int main(){
std::cout << "max(5,3)! =="
<< max(5,3) <<endl;
std::cout << "max(2.4,2.1)! =="
<< max(2.4,2.1) <<endl;
return 0;
}
appadm@xpangxie:~$ g++ testcpp.cpp -o testcpp
testcpp.cpp: In function 'int main()':
testcpp.cpp:10: error: call of overloaded 'max(int, int)' is ambiguous
testcpp.cpp:5: note: candidates are: T max(T, T) [with T = int]
/usr/include/c++/4.3/bits/stl_algobase.h:210: note: const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = int]
testcpp.cpp:15: error: call of overloaded 'max(double, double)' is ambiguous
testcpp.cpp:5: note: candidates are: T max(T, T) [with T = double]
/usr/include/c++/4.3/bits/stl_algobase.h:210: note: const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = double]
appadm@xpangxie:~$
请大侠们给指教指教。 |
|