新微赢技术网
标题:
[求助]用模板时的一个错误??
[打印本页]
作者:
顺其自然
时间:
2009-11-4 00:49
标题:
[求助]用模板时的一个错误??
#include <iostream>
using namespace std;
template<typename T>
void swap(T &a,T &b);
int main()
{
int i=10;
int j=20;
cout<<"i="<<i<<",j="<<j<<endl
<<"after swap:"<<endl;
swap(i,j);
cout<<"i="<<i<<",j="<<j<<endl;
return 0;
}
template<typename T>
void swap(T &a,T &b)
{
T temp;
temp=a;
a=b;
b=temp;
}
errors:
E:\VC\10-31\aa.cpp(13) : error C2667: 'swap' : none of 2 overload have a best conversion
E:\VC\10-31\aa.cpp(13) : error C2668: 'swap' : ambiguous call to overloaded function
作者:
FIFA2007
时间:
2009-11-4 00:49
none of 2 overload have a best conversion
标准库已经有了一个swap模板。
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2