我是C++初学者,函数模板有点不懂
在VS2012环境下编写的程序#include <iostream>
using namespace std;
template<classT>
T GetMax(T a,T b)
{
T c;
if(a>b)
c=a;
else
c=b;
return c;
}
void main()
{
int m=6,n=3,k;
k=GetMax<int>(m,n);//这里显示错了
cout<<k<<endl;
system("pause");
}
我该怎么调用函数模板呢?