我来我网
https://5come5.cn
 
您尚未 登录  注册 | 菠菜 | 软件站 | 音乐站 | 邮箱1 | 邮箱2 | 风格选择 | 更多 » 
 

本页主题: 哪位大人帮我看看这个程序的阿 显示签名 | 打印 | 加为IE收藏 | 收藏主题 | 上一主题 | 下一主题

seast



性别: 帅哥 状态: 该用户目前不在线
等级: 人见人爱
发贴: 2806
威望: 0
浮云: 1585
在线等级:
注册时间: 2006-11-05
最后登陆: 2010-03-12

5come5帮你背单词 [ equivalent /i'kwivələnt/ a. 相等的,等价的,等量的;n. 同等物,等价物,对等 ]


哪位大人帮我看看这个程序的阿

帮我看看这个程序哪个地方出错了!
老师说,对象矩阵没有初始化,可是我还是没有明白!谢谢阿

# include <iostream>
# include <cmath>

using namespace std;

class matrix
{
public :
    matrix (int dims);
    ~matrix();
    setmatrix(double *a);
    printM();
private:
    int index;
    double *matrixA;
};

matrix ::matrix(int dims)
{
    int index =dims;
    matrixA = new double[index * index];
}

matrix ::~matrix()
{
    delete [] matrixA;
}

matrix ::setmatrix (double *a )
{
    for (int i=0; i< index * index ; i++)
            *(matrixA + i) =  a [ i ];
}

matrix ::printM()
{
    cout << " the  matrix is "  << endl ;
    for (int i=0;i<index ;i++)
        for (int j=0;j < index ;j++)
            cout << * (matrixA + i* index +j)  << " " ;
            cout << endl ;
}


void main ()

    matrix matrix1(2);
    double a[]= {1.0, 2.0, 3.0, 4.0 } ;
    matrix1.setmatrix(a);
    matrix1.printM ( );
}


[ 此帖被seast在2007-11-30 16:48重新编辑 ]
顶端 Posted: 2007-11-30 15:59 | [楼 主]
lkk



性别: 帅哥 状态: 该用户目前不在线
头衔: 做神一样的男人
等级: 人见人爱
发贴: 3954
威望: 0
浮云: 1248
在线等级:
注册时间: 2005-09-30
最后登陆: 2012-01-14

5come5帮你背单词 [ yesterday /'jestədi/ ad. & n. 昨天 ]


非构造函数的成员函数需要返回类型
顶端 Posted: 2007-11-30 20:43 | [1 楼]
我来我网·5come5 Forum » 程序员之家

Total 0.011500(s) query 6, Time now is:11-22 16:32, Gzip enabled
Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号