一直编译不能通过
template<typename T,typename M>
void display (T &t,M &m)
{
T temp=0;
temp=t;
t=m;
m=temp;
}
void main()
{
int a=2;
double b=2.3;
display<int,double>(2,2.3);
cout<<a;
cout<<b;
}
template<typename T,typename M>
void display (T &t,M &m)
{
T temp=0;
temp=t;
t=m;
m=temp;
}
void main()
{
int a=2;
double b=2.3;
display<int,double>(2,2.3);
cout<<a;
cout<<b;
}
2016-05-12
举报