| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 663 人关注过本帖
标题:将写好的一个运算符重载为成员函数的代码改为友元函数,就出现这种情况,这 ...
取消只看楼主 加入收藏
千树
Rank: 1
等 级:新手上路
帖 子:62
专家分:1
注 册:2013-11-4
结帖率:100%
收藏
 问题点数:0 回复次数:1 
将写好的一个运算符重载为成员函数的代码改为友元函数,就出现这种情况,这是哪里错了呢
矩阵加法的代码:
#include<iostream>
using namespace std;
class JZ
{
private:
    int hang;
    int lie;
    int a[100][100];
public:
    JZ (int i,int j,int c[100][100])
    {hang=i;
     lie=j;
     int h,l;
     for(h=0;h<hang;h++)
        for(l=0;l<lie;j++)
            a[h][l]=c[h][l];
    }
    friend JZ operator + (JZ one,JZ two)
    {int i,j;
     for(i=0;i<hang;i++)
        for(j=0;j<lie;j++)
         a[i][j]=one.a[i][j]+two.a[i][j];
     return (JZ (hang,lie,a) );
    }
    void show()
    {int i,j;
     for(i=0;i<hang;i++)
     {
         for(j=0;j<lie;j++)
         cout<<a[i][j]<<'\t';
         cout<<endl;

     }
    }
};

void main()
{   int a[100][100],b[100][100];
    int i,j,m,n;
    cout<<"该矩阵为几行几列?"<<endl;
    cin>>i>>j;
    cout<<"矩阵a:"<<endl;
    for(m=0;m<i;m++)
        for(n=0;n<j;n++)
            cin>>a[m][n];
    cout<<"矩阵b:"<<endl;
    for(m=0;m<i;m++)
        for(n=0;n<j;n++)
            cin>>b[m][n];
    JZ one(i,j,a);
    JZ two(i,j,b);
    JZ three=one+two;
    three.show();
}
报错为:
fatal error C1001: INTERNAL COMPILER ERROR
        (compiler file 'msc1.cpp', line 1786)
         Please choose the Technical Support command on the Visual C++
         Help menu, or open the Technical Support help file for more information
执行 cl.exe 时出错.
搜索更多相关主题的帖子: private include public friend return 
2014-04-21 16:34
千树
Rank: 1
等 级:新手上路
帖 子:62
专家分:1
注 册:2013-11-4
收藏
得分:0 
循环的时候,将l写成j了,在友元函数中,hang和lie是私有的,不能直接写,也没有重新定义一个数组
正确的代码:

#include<iostream.h>
//using namespace std;
class JZ
{
private:
    int hang;
    int lie;
    int a[100][100];
public:
    JZ (int i,int j,int c[100][100])
    {
        hang=i;
        lie=j;
        int h,l;
        for(h=0;h<hang;h++)
            for(l=0;l<lie;l++)
                a[h][l]=c[h][l];
    }
    friend JZ operator + (JZ &one,JZ &two)
    {
        int i,j;
        int a[100][100];
        for(i=0;i<one.hang;i++)
            for(j=0;j<one.lie;j++)
                a[i][j]=one.a[i][j]+two.a[i][j];
        return (JZ (one.hang,one.lie,a));
    }

    void show()
    {
        int i,j;
        for(i=0;i<hang;i++)
        {
         for(j=0;j<lie;j++)
         cout<<a[i][j]<<'\t';
         cout<<endl;
        }
    }
};

void main()
{   int a[100][100],b[100][100];
    int i,j,m,n;
    cout<<"该矩阵为几行几列?"<<endl;
    cin>>i>>j;
    cout<<"矩阵a:"<<endl;
    for(m=0;m<i;m++)
        for(n=0;n<j;n++)
            cin>>a[m][n];
    cout<<"矩阵b:"<<endl;
    for(m=0;m<i;m++)
        for(n=0;n<j;n++)
            cin>>b[m][n];
    JZ one(i,j,a);
    JZ two(i,j,b);
    JZ three=one+two;
    three.show();
}
2014-05-20 18:14
快速回复:将写好的一个运算符重载为成员函数的代码改为友元函数,就出现这种情况 ...
数据加载中...
 
   



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

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