| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 409 人关注过本帖
标题:[求助]编译出错,帮一下.
只看楼主 加入收藏
nuciewth
Rank: 14Rank: 14Rank: 14Rank: 14
来 自:我爱龙龙
等 级:贵宾
威 望:104
帖 子:9786
专家分:208
注 册:2006-5-23
结帖率:50%
收藏
 问题点数:0 回复次数:5 
[求助]编译出错,帮一下.
#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
搜索更多相关主题的帖子: 编译 
2006-12-16 22:12
wangxiang
Rank: 2
等 级:新手上路
威 望:5
帖 子:376
专家分:0
注 册:2006-3-28
收藏
得分:0 
不能那么用啊
你要那么用的话,得动态分配内存

2006-12-16 23:16
zzymoon
Rank: 1
等 级:新手上路
帖 子:82
专家分:1
注 册:2006-9-19
收藏
得分:0 
太高深了```
我没有接触到template```
帮不了``

程序天下,C的亡魂。 偶``````来自地狱
2006-12-16 23:20
wangxiang
Rank: 2
等 级:新手上路
威 望:5
帖 子:376
专家分:0
注 册:2006-3-28
收藏
得分:0 

#include <iostream>
#include <vector>
using namespace std;
template<class type>
void sumAll(vector< vector<type> > vvec,vector<type> &vec)
{
for(size_t i = 0; i < vvec.size(); i++)
{
type result = 0;
for(size_t j = 0; j < vvec[i].size(); j++)
result += vvec[i][j];
vec.push_back(result);
}
}
int main()
{
vector< vector<int> > ivvec;
vector<int> ivec1,ivec2,ivec3;
ivec1.push_back(1);
ivec1.push_back(2);
ivec1.push_back(3);
ivec2.push_back(2);
ivec2.push_back(3);
ivec2.push_back(4);
ivvec.push_back(ivec1);
ivvec.push_back(ivec2);
sumAll(ivvec,ivec3);
for(size_t size = 0; size < ivec3.size(); size++)
cout<<ivec3[size]<<" ";
cout<<endl;
system("pause");
return 0;
}


2006-12-16 23:55
nuciewth
Rank: 14Rank: 14Rank: 14Rank: 14
来 自:我爱龙龙
等 级:贵宾
威 望:104
帖 子:9786
专家分:208
注 册:2006-5-23
收藏
得分:0 
以下是引用wangxiang在2006-12-16 23:16:12的发言:
不能那么用啊
你要那么用的话,得动态分配内存

能说一下原因吗?谢谢.


倚天照海花无数,流水高山心自知。
2006-12-17 18:28
wangxiang
Rank: 2
等 级:新手上路
威 望:5
帖 子:376
专家分:0
注 册:2006-3-28
收藏
得分:0 
不好意思,我错了,是可以那么用的
看来你用的是VC6.0换个DEV—CPP吧
你的程序没错
#include<iostream>
using namespace std;
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];
}
}
int 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;
system("pause");
return 0;
}

2006-12-17 22:46
快速回复:[求助]编译出错,帮一下.
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.038067 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved