#include<iostream>
using namespace std;
template <class type1,class type2>
void myfunc(type1 x,type2 y)
{
cout<<x<<' '<<y<<endl;
}
int main()
{
int a=1,b=2;
float x=1.1,y=1.2;
myfunc(a,x);
myfunc(y,b);
return 0;
}
测试结果:
1 1.1
1.2 2
请按任意键继续. . .