1楼:匿名用户
#include
#include
using namespace std;
template
void maxn(t ar,int n);
templatevoid maxn(t * ar,int n);//我这个显示具体化错在**啊?模板型参类表不能为空;
int main()
; double tr[4]=;
string ch[5]= //类型不对;
; maxn(aa,6);
maxn(tr,5);
maxn(ch,5);
return 0;
} template
void maxn(t ar,int n);在这里模板形参列表中的类名无关紧要,
如templatereturn_type name();
与templatereturn_type name();
是一样的。
好好与你的程序对照一下!!!