| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 495 人关注过本帖
标题:sifangli1@126.com
只看楼主 加入收藏
sifangli
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2008-11-11
收藏
 问题点数:0 回复次数:2 
sifangli1@126.com
请高手帮个忙  下面的程序为什么运行不了?我的是vc++6.0  
改了第一二行为#include<iosteam.h>也不行
#include<iostream>
using namespace std;
class M
{public:
  M();
  friend operator+(M &,M &);
  friend ostream& operator<<(ostream&,M&);
  friend istream& operator>>(istream&,M&);
private:
    int mat[2][3];
};
M::M()
{for(int i=0;i<2;i++)
 for(int j=0;j<3;j++)
     mat[i][j]=0;
}
M operator+(M&a,M&b)
{M c;
for(int i=0;i<2;i++)
  for(int j=0;j<3;j++)
  {
    c.mat[i][j]=a.[i][j]+b.[i][j];
  }
return c;
}
istream& operator>>(istream &in,M &m)
{cout<<"input valu of matrix &m"<<endl;
for(int i=0;i<2;i++)
for(int j=0;j<3;j++)
in>>m.mat[i][j];
return in;
}

 ostream& operator<<(ostream&out,M&m)
 {for(int i=0;i<2;i++)
 for(int j=0;j<3;j++)
 {
     out<<m.mat[i][j]<<" ";
     out<<endl;
 }
 return out;
 }

 int main()
 {M a,b,c;
 cin>>a;
 cin>>b;
 cout<<endl<<"M.a:"<<endl<<a<<endl;
 cout<<endl<<:M.b:"<<endl<<b<<endl;
 c=a+b;
 cout<<endl<<"M c=M a+M b:"<<endl<<c<<endl;
 return 0;
 }
搜索更多相关主题的帖子: private 
2008-11-11 13:25
debroa723
Rank: 10Rank: 10Rank: 10
等 级:贵宾
威 望:23
帖 子:862
专家分:1954
注 册:2008-10-12
收藏
得分:0 
太多粗枝大叶的地方,仔细点呀.
1 friend operator+(M &,M &); 没写返回值,定义的地方写了,可见你是大意.
friend M operator+(M &,M &);
2 c.mat[i][j]=a.[i][j]+b.[i][j];//M operator+(M &,M &)实现代码的地方,仔细看看少打了什么a.的后面和b.的后面
3 cout<<endl<<:M.b:"<<endl<<b<<endl;//这里也有打错的地方. ":"应该是引号吧

编译会有错误信息,没人可以一次性写过就编译通过的,一般通过编译后的错误信息来找书写错误\语法错误等.
2008-11-11 23:01
sunkaidong
Rank: 4
来 自:南京师范大学
等 级:贵宾
威 望:12
帖 子:4496
专家分:141
注 册:2006-12-28
收藏
得分:0 
最好用命名空间隔开

学习需要安静。。海盗要重新来过。。
2008-11-12 08:52
快速回复:sifangli1@126.com
数据加载中...
 
   



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

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