[求助]编译出错,帮一下.
#include<iostream.h>template<class Type,int Rows,int Cols>
void sumAll(Type data[][Cols],Type result[])
{
for(int i=0;i<Rows;i++)
{
result[i]=0;
for(int j=0;j<Cols;j++)
result[i]+=data[i][j];
}
}
void main()
{
int d[][3]={{1,2,3},{2,3,4},{2,5,3},{3,5,9},{8,9,4}};
int r[5];
sumAll<int,5,3>(d,r);//必需强制实例转化
cout<<r[0]<<' '<<r[1]<<' '<<r[2]<<' '<<r[3]<<' '<<r[4]<<endl;
double dd[][4]={{1.2,1.3,5.2,3.3},{2.2,1.4,0.4,4.2},{7.2,2.3,8.2,5.8},{2.4,3.5,5.4,6.3}};
double rr[4];
sumAll<double,4,4>(dd,rr);//必需强制实例转化
cout<<rr[0]<<' '<<rr[1]<<' '<<rr[2]<<' '<<rr[3]<<endl;
}
error C2087: '<Unknown>' : missing subscript